diff options
author | Ilja <ilja@ilja.space> | 2022-05-26 13:27:06 +0200 |
---|---|---|
committer | Ilja <ilja@ilja.space> | 2022-06-21 12:10:27 +0200 |
commit | 8a9144ca8b8e17df509dc8ac3934656b7dac8d77 (patch) | |
tree | e4a4f74d5ddfb827f2281266ed662f357d1982aa /config/description.exs | |
parent | 9f6c36475914bfd1b8c02035341765b4d1bd4395 (diff) | |
download | pleroma-8a9144ca8b8e17df509dc8ac3934656b7dac8d77.tar.gz pleroma-8a9144ca8b8e17df509dc8ac3934656b7dac8d77.zip |
Add priviledges for :user_credentials
I only moved the ones from the :require_privileged_staff block for now
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/description.exs b/config/description.exs index b45d416b1..4986ccce6 100644 --- a/config/description.exs +++ b/config/description.exs @@ -969,14 +969,14 @@ config :pleroma, :config_description, [ %{ key: :admin_privileges, type: {:list, :atom}, - suggestions: [:user_deletion], + suggestions: [:user_deletion, :user_credentials], description: "What extra priviledges to allow admins (e.g. updating user credentials, get password reset token, delete users, index and read private statuses and chats)" }, %{ key: :moderator_privileges, type: {:list, :atom}, - suggestions: [:user_deletion], + suggestions: [:user_deletion, :user_credentials], description: "What extra priviledges to allow moderators (e.g. updating user credentials, get password reset token, delete users, index and read private statuses and chats)" }, |