mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 13:17:38 +03:00
mod_adhoc: Remove "mod_" prefix from permission action name
Other places doesn't have "mod_" there, why should it here?
This commit is contained in:
parent
b06dd038cd
commit
ade5f40371
2 changed files with 3 additions and 3 deletions
|
@ -27,10 +27,10 @@ function _M.new(name, node, handler, permission)
|
|||
error "the permission mode 'user' has been renamed 'any', please update your code"
|
||||
end
|
||||
if permission == "admin" then
|
||||
module:default_permission("prosody:admin", "mod_adhoc:"..node);
|
||||
module:default_permission("prosody:admin", "adhoc:"..node);
|
||||
permission = "check";
|
||||
elseif permission == "global_admin" then
|
||||
module:default_permission("prosody:operator", "mod_adhoc:"..node);
|
||||
module:default_permission("prosody:operator", "adhoc:"..node);
|
||||
permission = "check";
|
||||
end
|
||||
return { name = name, node = node, handler = handler, cmdtag = _cmdtag, permission = permission };
|
||||
|
|
|
@ -15,7 +15,7 @@ local commands = {};
|
|||
module:add_feature(xmlns_cmd);
|
||||
|
||||
local function check_permissions(event, node, command)
|
||||
return (command.permission == "check" and module:may("mod_adhoc:"..node, event))
|
||||
return (command.permission == "check" and module:may("adhoc:"..node, event))
|
||||
or (command.permission == "local_user" and jid_host(event.stanza.attr.from) == module.host)
|
||||
or (command.permission == "any");
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue