SHOW GRANTS
ON { <entries> | <find_expression> }
find_expression ::=
FIND ( { <type_expression> | <tag_expression> | NOT <tag_expression> } [ AND ... ] )
tag_expression ::=
TAG = 'tag_name'
type_expression ::=
TYPE = { BLOB | DEQUE | HSET | INT | INTEGER | STREAM | TAG | TS }
SHOW GRANT
will list the explicit access control for a database entry. This command requires the GET_ACL
privilege.
For security reasons, if the entry does not exist, SHOW GRANT
will return an empty list. That way, an user cannot abuse the GET_ACL
privilege to explore the database.
entries
The name of the entries for which the access control list should be listed.
List the privileges on table:
SHOW GRANTS ON table1
List the privileges for everything tagged with ‘nyse’:
SHOW GRANTS ON FIND(tag='nyse')