diff options
Diffstat (limited to 'src/commands/acl-users.json')
-rw-r--r-- | src/commands/acl-users.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/commands/acl-users.json b/src/commands/acl-users.json new file mode 100644 index 0000000..1a6bc75 --- /dev/null +++ b/src/commands/acl-users.json @@ -0,0 +1,25 @@ +{ + "USERS": { + "summary": "Lists all ACL users.", + "complexity": "O(N). Where N is the number of configured users.", + "group": "server", + "since": "6.0.0", + "arity": 2, + "container": "ACL", + "function": "aclCommand", + "command_flags": [ + "ADMIN", + "NOSCRIPT", + "LOADING", + "STALE", + "SENTINEL" + ], + "reply_schema": { + "type": "array", + "description": "List of existing ACL users", + "items": { + "type": "string" + } + } + } +} |