mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_pep, util.pubsub: Rename restricted->outcast, none->member and add new 'none' affiliation to better match XEP-0060
This commit is contained in:
parent
674da5cef0
commit
7df3613768
2 changed files with 26 additions and 7 deletions
|
@ -10,7 +10,7 @@ local default_config = {
|
|||
get_affiliation = function () end;
|
||||
normalize_jid = function (jid) return jid; end;
|
||||
capabilities = {
|
||||
restricted = {
|
||||
outcast = {
|
||||
be_subscribed = false;
|
||||
be_unsubscribed = true;
|
||||
};
|
||||
|
@ -20,6 +20,28 @@ local default_config = {
|
|||
retract = false;
|
||||
get_nodes = true;
|
||||
|
||||
subscribe = true;
|
||||
unsubscribe = true;
|
||||
get_subscription = true;
|
||||
get_subscriptions = true;
|
||||
get_items = false;
|
||||
|
||||
subscribe_other = false;
|
||||
unsubscribe_other = false;
|
||||
get_subscription_other = false;
|
||||
get_subscriptions_other = false;
|
||||
|
||||
be_subscribed = true;
|
||||
be_unsubscribed = true;
|
||||
|
||||
set_affiliation = false;
|
||||
};
|
||||
member = {
|
||||
create = false;
|
||||
publish = false;
|
||||
retract = false;
|
||||
get_nodes = true;
|
||||
|
||||
subscribe = true;
|
||||
unsubscribe = true;
|
||||
get_subscription = true;
|
||||
|
@ -196,7 +218,7 @@ function service:get_default_affiliation(node, actor, action) -- luacheck: ignor
|
|||
if access_model == "open" then
|
||||
return "none";
|
||||
elseif access_model == "whitelist" then
|
||||
return "restricted";
|
||||
return "outcast";
|
||||
end
|
||||
|
||||
if self.config.access_models then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue