mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_saslauth: Rename field from 'scope'->'role'
The 'scope' term derives from OAuth, and represents a bundle of permissions. We're now setting on the term 'role' for a bundle of permissions. This change does not affect any public modules I'm aware of.
This commit is contained in:
parent
7ebea134e6
commit
8b384dc77f
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ local function handle_status(session, status, ret, err_msg)
|
|||
module:fire_event("authentication-failure", { session = session, condition = ret, text = err_msg });
|
||||
session.sasl_handler = session.sasl_handler:clean_clone();
|
||||
elseif status == "success" then
|
||||
local ok, err = sm_make_authenticated(session, session.sasl_handler.username, session.sasl_handler.scope);
|
||||
local ok, err = sm_make_authenticated(session, session.sasl_handler.username, session.sasl_handler.role);
|
||||
if ok then
|
||||
module:fire_event("authentication-success", { session = session });
|
||||
session.sasl_handler = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue