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:
Kim Alvefur 2023-04-02 21:58:53 +02:00
parent b06dd038cd
commit ade5f40371
2 changed files with 3 additions and 3 deletions

View file

@ -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 };

View file

@ -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