diff options
author | Matthew Wild <mwild1@gmail.com> | 2023-06-29 15:36:13 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2023-06-29 15:36:13 +0100 |
commit | f7323ed6e45a8354a88928cbf91c73c7078cd2d0 (patch) | |
tree | cf4242993d275b4b04b0d97cd9eb751704625840 /plugins/muc/persistent.lib.lua | |
parent | 641f070a9da5d495e23dd1d7613121276fe96906 (diff) | |
download | prosody-f7323ed6e45a8354a88928cbf91c73c7078cd2d0.tar.gz prosody-f7323ed6e45a8354a88928cbf91c73c7078cd2d0.zip |
core, plugins: Split prosody:user role into prosody:{guest,registered,member}
This gives us more granular control over different types of user account.
Accounts registered by IBR get assigned prosody:registered by default, while
accounts provisioned by an admin (e.g. via prosodyctl shell) will receive
prosody:member by default.
Diffstat (limited to 'plugins/muc/persistent.lib.lua')
-rw-r--r-- | plugins/muc/persistent.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/persistent.lib.lua b/plugins/muc/persistent.lib.lua index 4c753921..29ed7784 100644 --- a/plugins/muc/persistent.lib.lua +++ b/plugins/muc/persistent.lib.lua @@ -9,7 +9,7 @@ local restrict_persistent = not module:get_option_boolean("muc_room_allow_persistent", true); module:default_permission( - restrict_persistent and "prosody:admin" or "prosody:user", + restrict_persistent and "prosody:admin" or "prosody:registered", ":create-persistent-room" ); |