diff options
author | rinpatch <rinpatch@sdf.org> | 2020-03-11 20:26:50 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-03-15 16:59:20 +0300 |
commit | 2183d8f8499c19e3d24028426ae7b29edba7175b (patch) | |
tree | cd4aafbd7a8800fdcc9ae45e699acaec41f2490f /docs/administration/CLI_tasks/user.md | |
parent | e7837bc14e3fd539837802bca0c2ed05e2178ea5 (diff) | |
download | pleroma-2183d8f8499c19e3d24028426ae7b29edba7175b.tar.gz pleroma-2183d8f8499c19e3d24028426ae7b29edba7175b.zip |
Merge branch 'docs/new_user' into 'develop'
CLI_tasks/user.md: Fix `pleroma.user new` documentation
Closes #1621
See merge request pleroma/pleroma!2286
Diffstat (limited to 'docs/administration/CLI_tasks/user.md')
-rw-r--r-- | docs/administration/CLI_tasks/user.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/administration/CLI_tasks/user.md b/docs/administration/CLI_tasks/user.md index da8363131..f535dad82 100644 --- a/docs/administration/CLI_tasks/user.md +++ b/docs/administration/CLI_tasks/user.md @@ -5,11 +5,11 @@ ## Create a user ```sh tab="OTP" -./bin/pleroma_ctl user new <email> [<options>] +./bin/pleroma_ctl user new <nickname> <email> [option ...] ``` ```sh tab="From Source" -mix pleroma.user new <email> [<options>] +mix pleroma.user new <nickname> <email> [option ...] ``` @@ -33,11 +33,11 @@ mix pleroma.user list ## Generate an invite link ```sh tab="OTP" - ./bin/pleroma_ctl user invite [<options>] + ./bin/pleroma_ctl user invite [option ...] ``` ```sh tab="From Source" -mix pleroma.user invite [<options>] +mix pleroma.user invite [option ...] ``` @@ -137,11 +137,11 @@ mix pleroma.user reset_password <nickname> ## Set the value of the given user's settings ```sh tab="OTP" - ./bin/pleroma_ctl user set <nickname> [<options>] + ./bin/pleroma_ctl user set <nickname> [option ...] ``` ```sh tab="From Source" -mix pleroma.user set <nickname> [<options>] +mix pleroma.user set <nickname> [option ...] ``` ### Options |