diff options
author | Ilja <ilja@ilja.space> | 2022-07-02 07:59:46 +0200 |
---|---|---|
committer | Ilja <ilja@ilja.space> | 2022-07-02 07:59:46 +0200 |
commit | 51f87ba30cf20a1ca6bc19d2229913d8e1eecda5 (patch) | |
tree | 74c4c69c89ea66f8b1214fb43a125427b27e513a /docs/configuration | |
parent | c0e4b1b3e27a4a8f8f02ea6a33b76c6f2a386d95 (diff) | |
download | pleroma-51f87ba30cf20a1ca6bc19d2229913d8e1eecda5.tar.gz pleroma-51f87ba30cf20a1ca6bc19d2229913d8e1eecda5.zip |
Change order of privilege tags to make more sense
The tags were listed in different places
They were listed in a rather randomly order
I reordered them in a way I think makes more sense
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/cheatsheet.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index c59c914f2..af82b6948 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -66,15 +66,15 @@ To add configuration to your config file, you can copy it from the base config. * `password_reset_token_validity`: The time after which reset tokens aren't accepted anymore, in seconds (default: one day). * `admin_privileges`: A list of privileges an admin has (e.g. delete messages, manage reports...) * Possible values are: - * `:users_delete` + * `:users_read` + * `:users_manage_invites` + * `:users_manage_activation_state` + * `:users_manage_tags` * `:users_manage_credentials` + * `:users_delete` * `:messages_read` - * `:users_manage_tags` - * `:users_manage_activation_state` - * `:users_manage_invites` - * `:reports_manage_reports` - * `:users_read` * `:messages_delete` + * `:reports_manage_reports` * `:emoji_manage_emoji` * `moderator_privileges`: A list of privileges a moderator has (e.g. delete messages, manage reports...) * Possible values are the same as for `admin_privileges` |