mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 08:10:50 +01:00
0f180756ab
- Restructuring & co
30 lines
711 B
JavaScript
30 lines
711 B
JavaScript
define([
|
|
'factories/playbook',
|
|
'services/playbooks',
|
|
'services/identities'
|
|
], function () {
|
|
app.registerController('AddPlaybookCtrl', ['$scope', 'Playbook', 'playbooks', '$state', 'identities', function($scope, Playbook, playbooks, $state, identities) {
|
|
$scope.playbook = new Playbook();
|
|
|
|
identities.getIdentities(function () {
|
|
$scope.identities = identities.identities;
|
|
if (!$scope.$$phase) {
|
|
$scope.$digest();
|
|
}
|
|
});
|
|
|
|
$scope.add = function () {
|
|
$scope.playbook.add()
|
|
.success(function (data) {
|
|
playbooks.getPlaybooks(function () {
|
|
$state.transitionTo('playbook.tasks', {
|
|
playbook_id: data._id
|
|
});
|
|
});
|
|
})
|
|
.error(function (data) {
|
|
|
|
})
|
|
}
|
|
}]);
|
|
}); |