checkRights #
Available since Kuzzle 2.8.0
Available since 7.5.0
Checks if the provided API request can be executed by the current logged user.
checkRights(requestPayload)
Property | Type | Description |
---|---|---|
requestPayload | object | Contains a RequestPayload |
timeout | number | Time (in ms) during which a request will still be waited to be resolved. Set it -1 if you want to wait indefinitely |
requestPayload
#
The RequestPayload must contains at least the following properties:
controller
: API controlleraction
: API action
Resolves #
A boolean telling whether the provided request would have been allowed or not.
Usage #
const requestPayload = {
controller: 'document',
action: 'create',
index: 'nyc-open-data',
collection: 'yellow-taxi',
body: {
name: 'Melis'
}
}
try {
const result = await kuzzle.auth.checkRights(requestPayload);
console.log(result);
/*
true
*/
} catch (error) {
console.error(error.message);
}
Edit this page on Github (opens new window)