mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-23 05:29:52 +05:30
Merge branch 'release/1.0.5'
This commit is contained in:
commit
e04e6d2fae
@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.0.4 (released 2013-02-21)
|
## 1.0.5 (released 2013-02-21)
|
||||||
|
|
||||||
* Fixed the SQL example for SessionInterface::getScopes()
|
* Fixed the SQL example for SessionInterface::getScopes()
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "lncd/oauth2",
|
"name": "lncd/oauth2",
|
||||||
"description": "OAuth 2.0 Framework",
|
"description": "OAuth 2.0 Framework",
|
||||||
"version": "1.0.4",
|
"version": "1.0.5",
|
||||||
"homepage": "https://github.com/lncd/OAuth2",
|
"homepage": "https://github.com/lncd/OAuth2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -225,8 +225,7 @@ interface SessionInterface
|
|||||||
* Example SQL query:
|
* Example SQL query:
|
||||||
*
|
*
|
||||||
* <code>
|
* <code>
|
||||||
* SELECT oauth_scopes.scope, oauth_scopes.name, oauth_scopes.description
|
* SELECT oauth_scopes.scope FROM oauth_session_scopes JOIN oauth_scopes ON
|
||||||
* FROM oauth_session_scopes JOIN oauth_scopes ON
|
|
||||||
* oauth_session_scopes.scope_id = oauth_scopes.id WHERE
|
* oauth_session_scopes.scope_id = oauth_scopes.id WHERE
|
||||||
* session_id = $sessionId
|
* session_id = $sessionId
|
||||||
* </code>
|
* </code>
|
||||||
@ -236,12 +235,11 @@ interface SessionInterface
|
|||||||
* <code>
|
* <code>
|
||||||
* Array
|
* Array
|
||||||
* (
|
* (
|
||||||
* [0] => Array
|
* [0] => (string) The scope
|
||||||
* (
|
* [1] => (string) The scope
|
||||||
* [scope] => (string) The scope
|
* [2] => (string) The scope
|
||||||
* [name] => (string) The scope's name
|
* ...
|
||||||
* [description] => (string) The scope's description
|
* ...
|
||||||
* )
|
|
||||||
* )
|
* )
|
||||||
* </code>
|
* </code>
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user