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