We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of
target: ['all-of', { type: 'username', value: 'fgouveia' }, { type: 'group', value: 'writer' } ]
Do something like this for an AND condition
AND
target: { username: 'fgouveia', group: 'writer' }
Use an array for a combination of AND and OR condition
OR
target: [ { username: 'fgouveia', group: 'writer' }, { username: 'anonymous', group: 'reader' } ]
The text was updated successfully, but these errors were encountered:
very good idea, hope this will be done soon :)
Sorry, something went wrong.
Coming soon ;)
franciscogouveia/rbac-core#12
Done!
it's getting better and better. simple and powerful :) thanks a lot
No branches or pull requests
Instead of
Do something like this for an
AND
conditionUse an array for a combination of
AND
andOR
conditionThe text was updated successfully, but these errors were encountered: