aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-06-01 17:28:10 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-06-01 17:28:10 -0400
commit815fbcd63ad68b41e9107967d95230385597ec41 (patch)
tree41d257b67cf4952374c6da2f64f5f2fa169912af /src/commands
parent62000550cfaf248eac04680113ac6dff1c81bed8 (diff)
downloadtanzanite-815fbcd63ad68b41e9107967d95230385597ec41.tar.gz
tanzanite-815fbcd63ad68b41e9107967d95230385597ec41.tar.bz2
tanzanite-815fbcd63ad68b41e9107967d95230385597ec41.zip
fix(SuperUserCommand): invalid helpArgs
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/dev/superUser.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/commands/dev/superUser.ts b/src/commands/dev/superUser.ts
index ce23da5..57e2b86 100644
--- a/src/commands/dev/superUser.ts
+++ b/src/commands/dev/superUser.ts
@@ -17,15 +17,13 @@ export default class SuperUserCommand extends BushCommand {
{
id: 'action',
description: 'Whether to add or remove a user from the superuser list.',
- readableType: 'add|remove',
- slashType: false
+ readableType: 'add|remove'
},
{
id: 'user',
description: 'The user to add/remove from the superuser list.',
type: 'user',
- match: 'restContent',
- slashType: false
+ match: 'restContent'
}
]
});