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