mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
|
define([
|
||
|
'app'
|
||
|
], function(app) {
|
||
|
app.registerController('PlaybookCtrl', ['$scope', function($scope) {
|
||
|
console.log($scope.playbook);
|
||
|
}]);
|
||
|
});
|