usermanager: Include role_name in event for consistency with the 'removed' event

This commit is contained in:
Matthew Wild 2025-02-13 15:31:37 +00:00
parent d384d98c11
commit ccacf5acb3

View file

@ -244,7 +244,7 @@ local function add_user_secondary_role(user, host, role_name)
local role, err = hosts[host].authz.add_user_secondary_role(user, role_name);
if role then
prosody.events.fire_event("user-role-added", {
username = user, host = host, role = role;
username = user, host = host, role_name = role_name, role = role;
});
end
return role, err;