diff options
author | Ilja <ilja@ilja.space> | 2022-05-28 12:15:36 +0200 |
---|---|---|
committer | Ilja <ilja@ilja.space> | 2022-06-21 12:10:27 +0200 |
commit | cbb26262a5957d3a72bef383a394bb3b2ad0215d (patch) | |
tree | 7a659afc43639e16f04350f9938301135a95eaa0 /config | |
parent | 3f26f1b30fe605635e3faf610f813f3ae3ad43ec (diff) | |
download | pleroma-cbb26262a5957d3a72bef383a394bb3b2ad0215d.tar.gz pleroma-cbb26262a5957d3a72bef383a394bb3b2ad0215d.zip |
Add privileges for :user_read
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 3 | ||||
-rw-r--r-- | config/description.exs | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/config/config.exs b/config/config.exs index 6fd7044e3..778e6bf21 100644 --- a/config/config.exs +++ b/config/config.exs @@ -263,7 +263,8 @@ config :pleroma, :instance, :user_tag, :user_activation, :user_invite, - :report_handle + :report_handle, + :user_read ], moderator_privileges: [], max_endorsed_users: 20, diff --git a/config/description.exs b/config/description.exs index d0364340e..6d8cacace 100644 --- a/config/description.exs +++ b/config/description.exs @@ -970,7 +970,8 @@ config :pleroma, :config_description, [ :user_tag, :user_activation, :user_invite, - :report_handle + :report_handle, + :user_read ], 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)" @@ -985,7 +986,8 @@ config :pleroma, :config_description, [ :user_tag, :user_activation, :user_invite, - :report_handle + :report_handle, + :user_read ], 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)" |