Bearer tokens are app token
Fixes #12498 This means that we set that it is a proper app token once it is validated. This will allow the 2FA middleware to just run the same check. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
9939540ce4
commit
1794c3fdea
|
@ -774,6 +774,10 @@ class Session implements IUserSession, Emitter {
|
|||
if(!$this->validateToken($token)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Set the session variable so we know this is an app password
|
||||
$this->session->set('app_password', $token);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue