mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_authz_internal: Fix error messages
This commit is contained in:
parent
dc810fea2d
commit
d384d98c11
1 changed files with 2 additions and 2 deletions
|
@ -161,7 +161,7 @@ end
|
||||||
function set_user_role(user, role_name)
|
function set_user_role(user, role_name)
|
||||||
local role = role_registry[role_name];
|
local role = role_registry[role_name];
|
||||||
if not role then
|
if not role then
|
||||||
return error("Cannot assign default user an unknown role: "..tostring(role_name));
|
return error("Cannot assign user an unknown role: "..tostring(role_name));
|
||||||
end
|
end
|
||||||
local keys_update = {
|
local keys_update = {
|
||||||
_default = role_name;
|
_default = role_name;
|
||||||
|
@ -182,7 +182,7 @@ end
|
||||||
function add_user_secondary_role(user, role_name)
|
function add_user_secondary_role(user, role_name)
|
||||||
local role = role_registry[role_name];
|
local role = role_registry[role_name];
|
||||||
if not role then
|
if not role then
|
||||||
return error("Cannot assign default user an unknown role: "..tostring(role_name));
|
return error("Cannot assign user an unknown role: "..tostring(role_name));
|
||||||
end
|
end
|
||||||
local ok, err = role_map_store:set(user, role_name, true);
|
local ok, err = role_map_store:set(user, role_name, true);
|
||||||
if not ok then
|
if not ok then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue