mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
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:
parent
641f070a9d
commit
f7323ed6e4
8 changed files with 53 additions and 45 deletions
|
@ -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"
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue