File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## 0.9.10 [ Work in progress]
4
4
5
+ - Enh #795 : Added method ` getAccountByProvider ` to User model to get account model by provider name (dmeroff)
5
6
- Fix #778 : Migrations now use correct db component (dmeroff)
6
7
- Fix #777 : Rethrow exception on failed user creation or registration (dmeroff)
7
8
- Enh #772 , #791 : Added ability to log into another user's account (thyseus)
Original file line number Diff line number Diff line change @@ -156,6 +156,19 @@ public function getAccounts()
156
156
return $ connected ;
157
157
}
158
158
159
+ /**
160
+ * Returns connected account by provider.
161
+ * @param string $provider
162
+ * @return Account|null
163
+ */
164
+ public function getAccountByProvider ($ provider )
165
+ {
166
+ $ accounts = $ this ->getAccounts ();
167
+ return isset ($ accounts [$ provider ])
168
+ ? $ accounts [$ provider ]
169
+ : null ;
170
+ }
171
+
159
172
/** @inheritdoc */
160
173
public function getId ()
161
174
{
You can’t perform that action at this time.
0 commit comments