mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
Из модели Account удалены лишние методы
This commit is contained in:
parent
23d44c1d0d
commit
b26ac7119c
@ -140,6 +140,8 @@ class Account extends ActiveRecord {
|
||||
* @param OauthClient $client
|
||||
* @param \League\OAuth2\Server\Entity\ScopeEntity[] $scopes
|
||||
*
|
||||
* TODO: этому методу здесь не место.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function canAutoApprove(OauthClient $client, array $scopes = []) {
|
||||
@ -159,23 +161,6 @@ class Account extends ActiveRecord {
|
||||
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
|
||||
* @return bool
|
||||
@ -186,13 +171,4 @@ class Account extends ActiveRecord {
|
||||
->exists();
|
||||
}
|
||||
|
||||
/**
|
||||
* TODO: нужно создать PR в UserTrait репо, чтобы этот метод сделали абстрактным
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getId() {
|
||||
return $this->getPrimaryKey();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user