mirror of
https://github.com/elyby/accounts.git
synced 2024-11-30 02:32:26 +05:30
Из модели Account удалены лишние методы
This commit is contained in:
parent
23d44c1d0d
commit
b26ac7119c
@ -140,6 +140,8 @@ class Account extends ActiveRecord {
|
|||||||
* @param OauthClient $client
|
* @param OauthClient $client
|
||||||
* @param \League\OAuth2\Server\Entity\ScopeEntity[] $scopes
|
* @param \League\OAuth2\Server\Entity\ScopeEntity[] $scopes
|
||||||
*
|
*
|
||||||
|
* TODO: этому методу здесь не место.
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function canAutoApprove(OauthClient $client, array $scopes = []) {
|
public function canAutoApprove(OauthClient $client, array $scopes = []) {
|
||||||
@ -159,23 +161,6 @@ class Account extends ActiveRecord {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
protected static function getSecretKey() {
|
|
||||||
return Yii::$app->params['jwtSecret'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
protected static function getHeaderToken() {
|
|
||||||
return [
|
|
||||||
'iss' => Yii::$app->request->hostInfo,
|
|
||||||
'aud' => Yii::$app->request->hostInfo,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Выполняет проверку, принадлежит ли этому нику аккаунт у Mojang
|
* Выполняет проверку, принадлежит ли этому нику аккаунт у Mojang
|
||||||
* @return bool
|
* @return bool
|
||||||
@ -186,13 +171,4 @@ class Account extends ActiveRecord {
|
|||||||
->exists();
|
->exists();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* TODO: нужно создать PR в UserTrait репо, чтобы этот метод сделали абстрактным
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
public function getId() {
|
|
||||||
return $this->getPrimaryKey();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user