aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/persistent.lib.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2023-06-29 15:36:13 +0100
committerMatthew Wild <mwild1@gmail.com>2023-06-29 15:36:13 +0100
commitf7323ed6e45a8354a88928cbf91c73c7078cd2d0 (patch)
treecf4242993d275b4b04b0d97cd9eb751704625840 /plugins/muc/persistent.lib.lua
parent641f070a9da5d495e23dd1d7613121276fe96906 (diff)
downloadprosody-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.lua2
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"
);