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.
This commit is contained in:
Matthew Wild 2023-06-29 15:36:13 +01:00
parent 641f070a9d
commit f7323ed6e4
8 changed files with 53 additions and 45 deletions

View file

@ -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"
);