mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
10 lines
277 B
JavaScript
10 lines
277 B
JavaScript
define([
|
|
'app',
|
|
'services/identities'
|
|
], function(app) {
|
|
app.registerController('IdentitiesCtrl', ['$scope', '$state', 'identities', function($scope, $state, identities) {
|
|
identities.getIdentities(function () {
|
|
$scope.identities = identities.identities;
|
|
});
|
|
}]);
|
|
}); |