Add an explicit Client.getAllUsers function

This commit is contained in:
Johannes Zellner
2022-02-14 14:55:04 +01:00
parent b4bbdda730
commit 2ec4ad934d
5 changed files with 34 additions and 12 deletions
+1 -1
View File
@@ -586,7 +586,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$tran
}
function fetchUsers() {
Client.getUsers(function (error, users) {
Client.getAllUsers(function (error, users) {
if (error) {
console.error(error);
return $timeout(fetchUsers, 5000);