mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
|
define([
|
||
|
'app'
|
||
|
], function(app) {
|
||
|
app.config(function($stateProvider) {
|
||
|
$stateProvider
|
||
|
.state('addPlaybook', {
|
||
|
url: '/add',
|
||
|
pageTitle: 'Add Playbook',
|
||
|
templateUrl: "/view/playbook/add"
|
||
|
})
|
||
|
})
|
||
|
})
|