mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Fixup method name
`get_user_role()` did not exist anywhere else. MattJ said `get_user_default_role()` was indented
This commit is contained in:
parent
57ed2e28a0
commit
c776c71066
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ function api:may(action, context)
|
|||
local role;
|
||||
local node, host = jid_split(context);
|
||||
if host == self.host then
|
||||
role = hosts[host].authz.get_user_role(node);
|
||||
role = hosts[host].authz.get_user_default_role(node);
|
||||
else
|
||||
role = hosts[self.host].authz.get_jid_role(context);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue