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