Remove redundant client api listUsers()

This commit is contained in:
Johannes Zellner
2016-04-17 18:42:56 +02:00
parent 32d8627045
commit 87dcf42c7e
2 changed files with 1 additions and 8 deletions

View File

@@ -331,7 +331,7 @@ angular.module('Application').controller('UsersController', ['$scope', '$locatio
$scope.groups = result;
Client.listUsers(function (error, result) {
Client.getUsers(function (error, result) {
if (error) return console.error('Unable to get user listing.', error);
$scope.users = result.users;