Skip to content

Commit ff17ece

Browse files
committed
Added method getAccountByProvider to User model (close #795)
1 parent a51957f commit ff17ece

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 0.9.10 [Work in progress]
44

5+
- Enh #795: Added method `getAccountByProvider` to User model to get account model by provider name (dmeroff)
56
- Fix #778: Migrations now use correct db component (dmeroff)
67
- Fix #777: Rethrow exception on failed user creation or registration (dmeroff)
78
- Enh #772, #791: Added ability to log into another user's account (thyseus)

models/User.php

+13
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,19 @@ public function getAccounts()
156156
return $connected;
157157
}
158158

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+
159172
/** @inheritdoc */
160173
public function getId()
161174
{

0 commit comments

Comments
 (0)