summaryrefslogtreecommitdiff
path: root/docs/configuration
diff options
context:
space:
mode:
authorIlja <ilja@ilja.space>2022-07-02 08:17:22 +0200
committerIlja <ilja@ilja.space>2022-07-02 08:17:22 +0200
commit15748fd30148b8188824bf10fac4c49b6821b041 (patch)
tree0ee33d518c32a0570cfce675059bf39baa55668a /docs/configuration
parent51f87ba30cf20a1ca6bc19d2229913d8e1eecda5 (diff)
downloadpleroma-15748fd30148b8188824bf10fac4c49b6821b041.tar.gz
pleroma-15748fd30148b8188824bf10fac4c49b6821b041.zip
Add better explanation in the Cheatsheet about what each tag does
Diffstat (limited to 'docs/configuration')
-rw-r--r--docs/configuration/cheatsheet.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md
index af82b6948..043f819c7 100644
--- a/docs/configuration/cheatsheet.md
+++ b/docs/configuration/cheatsheet.md
@@ -67,15 +67,25 @@ To add configuration to your config file, you can copy it from the base config.
* `admin_privileges`: A list of privileges an admin has (e.g. delete messages, manage reports...)
* Possible values are:
* `:users_read`
+ * Allows you to fetch users through the admin api
* `:users_manage_invites`
+ * Allows you to manage invites. This includes sending, resending, revoking and approving invites
* `:users_manage_activation_state`
+ * Allows you to activate and deactive accounts. This also allows you to see deactivated users through the Mastodon-API.
* `:users_manage_tags`
+ * Allows you to set and remove tags for users. This can be useful in combination with MRF policy `Pleroma.Web.ActivityPub.MRF.TagPolicy`.
* `:users_manage_credentials`
+ * Allows you to trigger a password reset and set new credentials
* `:users_delete`
+ * Allows you to delete accounts. Note that deleting an account is actually deactivating it and removing all data like posts, profile information, etc.
* `:messages_read`
+ * Allows you to view messages through the Admin-API, including non-public posts and chats
* `:messages_delete`
+ * Allows you to delete messages from otehr people
* `:reports_manage_reports`
+ * Allows you to see and manage reports
* `:emoji_manage_emoji`
+ * Allows you to manage emoji on your instance
* `moderator_privileges`: A list of privileges a moderator has (e.g. delete messages, manage reports...)
* Possible values are the same as for `admin_privileges`