mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
|
define([
|
||
|
'app',
|
||
|
'factories/playbook'
|
||
|
], function(app) {
|
||
|
app.registerController('AddPlaybookCtrl', ['$scope', 'Playbook', function($scope, Playbook) {
|
||
|
$scope.playbook = new Playbook();
|
||
|
}]);
|
||
|
});
|