mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
sessionmanager: Support passing an auth scope to make_authenticated
This commit is contained in:
parent
84c6ebd007
commit
dae152e58f
1 changed files with 2 additions and 1 deletions
|
@ -122,13 +122,14 @@ local function destroy_session(session, err)
|
|||
retire_session(session);
|
||||
end
|
||||
|
||||
local function make_authenticated(session, username)
|
||||
local function make_authenticated(session, username, scope)
|
||||
username = nodeprep(username);
|
||||
if not username or #username == 0 then return nil, "Invalid username"; end
|
||||
session.username = username;
|
||||
if session.type == "c2s_unauthed" then
|
||||
session.type = "c2s_unbound";
|
||||
end
|
||||
session.auth_scope = scope;
|
||||
session.log("info", "Authenticated as %s@%s", username, session.host or "(unknown)");
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue