diff options
Diffstat (limited to 'src/commands/acl-dryrun.json')
-rw-r--r-- | src/commands/acl-dryrun.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/commands/acl-dryrun.json b/src/commands/acl-dryrun.json new file mode 100644 index 0000000..544858c --- /dev/null +++ b/src/commands/acl-dryrun.json @@ -0,0 +1,35 @@ +{ + "DRYRUN": { + "summary": "Returns whether the user can execute the given command without executing the command.", + "complexity": "O(1).", + "group": "server", + "since": "7.0.0", + "arity": -4, + "container": "ACL", + "function": "aclCommand", + "history": [], + "command_flags": [ + "ADMIN", + "NOSCRIPT", + "LOADING", + "STALE", + "SENTINEL" + ], + "arguments": [ + { + "name": "username", + "type": "string" + }, + { + "name": "command", + "type": "string" + }, + { + "name": "arg", + "type": "string", + "optional": true, + "multiple": true + } + ] + } +} |