From 25b16907e48e235e0b3c80baafc75b30ae5a66e6 Mon Sep 17 00:00:00 2001 From: Sorin Badea Date: Tue, 26 Jul 2016 18:53:42 +0300 Subject: [PATCH] Adding missing ODM mappings to docs With the current documentation, when authenticating with username/password, the user is not linked to the access token. I've seen the the user property is defined, but not mapped. --- Resources/doc/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/doc/index.md b/Resources/doc/index.md index d080aa89..b21cb75d 100644 --- a/Resources/doc/index.md +++ b/Resources/doc/index.md @@ -320,6 +320,7 @@ class AuthCode extends BaseAuthCode { protected $id; protected $client; + protected $user; public function getClient() { @@ -344,6 +345,7 @@ class AuthCode extends BaseAuthCode + @@ -363,6 +365,7 @@ class AccessToken extends BaseAccessToken { protected $id; protected $client; + protected $user; public function getClient() { @@ -387,6 +390,7 @@ class AccessToken extends BaseAccessToken + @@ -406,6 +410,7 @@ class RefreshToken extends BaseRefreshToken { protected $id; protected $client; + protected $user; public function getClient() { @@ -430,6 +435,7 @@ class RefreshToken extends BaseRefreshToken +