mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-11 06:12:13 +05:30
Implemented getAuthCodeScopes() in PDO Session
This commit is contained in:
parent
11022e16ef
commit
3ea3eb5ebd
@ -171,6 +171,17 @@ class Session implements SessionInterface
|
|||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getAuthCodeScopes($oauthSessionAuthCodeId)
|
||||||
|
{
|
||||||
|
$db = \ezcDbInstance::get();
|
||||||
|
|
||||||
|
$stmt = $db->prepare('SELECT scope_id FROM `oauth_session_authcode_scopes` WHERE oauth_session_authcode_id = :authCodeId');
|
||||||
|
$stmt->bindValue(':authCodeId', $oauthSessionAuthCodeId);
|
||||||
|
$stmt->execute();
|
||||||
|
|
||||||
|
return $stmt->fetchAll();
|
||||||
|
}
|
||||||
|
|
||||||
public function associateScope($accessTokenId, $scopeId)
|
public function associateScope($accessTokenId, $scopeId)
|
||||||
{
|
{
|
||||||
$db = \ezcDbInstance::get();
|
$db = \ezcDbInstance::get();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user