aboutsummaryrefslogtreecommitdiff
path: root/docs/administration/CLI_tasks/user.md
diff options
context:
space:
mode:
authorfeld <feld@feld.me>2020-09-25 16:15:01 +0000
committerfeld <feld@feld.me>2020-09-25 16:15:01 +0000
commit1672d8b37c6a218071ccfdc95844010ba146e4c6 (patch)
tree2542d9b9646c9db6557c5dbf52977d5ed793df1f /docs/administration/CLI_tasks/user.md
parent5cd71208d9b273535f978559011377e703e82dcb (diff)
parent8b84ca4901c378d734cd87ae3e4bf72c508a84bf (diff)
downloadpleroma-1672d8b37c6a218071ccfdc95844010ba146e4c6.tar.gz
Merge branch 'feature/bulk-confirmation' into 'develop'
Bulk account confirmation actions Closes #2085 See merge request pleroma/pleroma!2975
Diffstat (limited to 'docs/administration/CLI_tasks/user.md')
-rw-r--r--docs/administration/CLI_tasks/user.md33
1 files changed, 32 insertions, 1 deletions
diff --git a/docs/administration/CLI_tasks/user.md b/docs/administration/CLI_tasks/user.md
index 3e7f028ba..c64ed4f22 100644
--- a/docs/administration/CLI_tasks/user.md
+++ b/docs/administration/CLI_tasks/user.md
@@ -224,9 +224,10 @@
```
### Options
+- `--admin`/`--no-admin` - whether the user should be an admin
+- `--confirmed`/`--no-confirmed` - whether the user account is confirmed
- `--locked`/`--no-locked` - whether the user should be locked
- `--moderator`/`--no-moderator` - whether the user should be a moderator
-- `--admin`/`--no-admin` - whether the user should be an admin
## Add tags to a user
@@ -271,3 +272,33 @@
```sh
mix pleroma.user toggle_confirmed <nickname>
```
+
+## Set confirmation status for all regular active users
+*Admins and moderators are excluded*
+
+=== "OTP"
+
+ ```sh
+ ./bin/pleroma_ctl user confirm_all
+ ```
+
+=== "From Source"
+
+ ```sh
+ mix pleroma.user confirm_all
+ ```
+
+## Revoke confirmation status for all regular active users
+*Admins and moderators are excluded*
+
+=== "OTP"
+
+ ```sh
+ ./bin/pleroma_ctl user unconfirm_all
+ ```
+
+=== "From Source"
+
+ ```sh
+ mix pleroma.user unconfirm_all
+ ```