getUserRights #
Callback response example
[
{
"controller": "my-controller",
"action": "my-action",
"index": "*",
"collection": "*",
"value": "allowed"
},
{
"controller": "another-controller",
"action": "*",
"index": "my-index",
"collection": "*",
"value": "conditional"
}
]
Given a Kuzzle user id (kuid
), retrieves the list of permissions granted to that user.
getUserRights(id, [options], callback) #
Arguments | Type | Description |
---|---|---|
kuid | String | Kuzzle User Unique Identifier |
options | JSON Object | Optional parameters |
callback | function | Callback handling the response |
Options #
Option | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
Callback Response #
Returns an array of objects.
Usage #
// Using callbacks (NodeJS or Web Browser)
kuzzle
.security
.getUserRights('kuid', function(error, rights) {
});reflecting
// Using promises (NodeJS)
kuzzle
.security
.getUserRightsPromise('kuid')
.then(rights => {
});
Edit this page on Github(opens new window)