update cli utility docs
This commit is contained in:
parent
562ed2e015
commit
fe4a788898
2 changed files with 5 additions and 1 deletions
|
@ -47,3 +47,6 @@ need to be up for this, making this ideal for some offline maintenance.
|
||||||
- `purgeInvites`: Deletes all available invite codes.
|
- `purgeInvites`: Deletes all available invite codes.
|
||||||
- `listAccounts`: Lists all active accounts.
|
- `listAccounts`: Lists all active accounts.
|
||||||
- `deleteAccount <username>`: Deletes an account with a given `username`.
|
- `deleteAccount <username>`: Deletes an account with a given `username`.
|
||||||
|
- `lockAccount <username>`: Locks the account under `username`.
|
||||||
|
- `unlockAccount <username>`: Unlocks the account under `username`.
|
||||||
|
- `logs`: Shows system logs.
|
||||||
|
|
3
main.go
3
main.go
|
@ -450,8 +450,9 @@ func main() {
|
||||||
"purgeInvites:\n\tDeletes all available invite codes.\n" +
|
"purgeInvites:\n\tDeletes all available invite codes.\n" +
|
||||||
"listAccounts:\n\tLists all active accounts.\n",
|
"listAccounts:\n\tLists all active accounts.\n",
|
||||||
"deleteAccount <username>:\n\tDeletes the account under `username`.\n",
|
"deleteAccount <username>:\n\tDeletes the account under `username`.\n",
|
||||||
|
"lockAccount <username>:\n\tLocks the account under `username`.\n",
|
||||||
"unlockAccount <username>:\n\tUnlocks the account under `username`.\n",
|
"unlockAccount <username>:\n\tUnlocks the account under `username`.\n",
|
||||||
"logs:\n\tShows system logs.\n",
|
"logs:\n\tShows system logs.\n",
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue