mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUAC-586: Fix typos surrounding getAllUsers() in userService.
This commit is contained in:
@@ -80,10 +80,9 @@ angular.module('rest').factory('userService', ['$injector',
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a promise which resolves with all users accessible by the
|
* Returns a promise which resolves with all users accessible by the
|
||||||
* given user, as a map of @link{User} arrays by the identifier of their
|
* current user, as a map of @link{User} arrays by the identifier of their
|
||||||
* corresponding data source. All given data sources are queried. If an
|
* corresponding data source. All given data sources are queried. If an
|
||||||
* error occurs while retrieving any PermissionSet, the promise will be
|
* error occurs while retrieving any user, the promise will be rejected.
|
||||||
* rejected.
|
|
||||||
*
|
*
|
||||||
* @param {String[]} dataSources
|
* @param {String[]} dataSources
|
||||||
* The unique identifier of the data sources containing the user to be
|
* The unique identifier of the data sources containing the user to be
|
||||||
@@ -128,7 +127,7 @@ angular.module('rest').factory('userService', ['$injector',
|
|||||||
},
|
},
|
||||||
|
|
||||||
// At least one request failed
|
// At least one request failed
|
||||||
function UserRetrievalFailed(e) {
|
function userRetrievalFailed(e) {
|
||||||
deferred.reject(e);
|
deferred.reject(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user