mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	Добавлена страница с отправкой письма для восстановления пароля от аккаунта
This commit is contained in:
		@@ -126,6 +126,7 @@ class OauthController extends Controller {
 | 
			
		||||
 | 
			
		||||
            if (!$account->canAutoApprove($clientModel, $authParams['scopes'])) {
 | 
			
		||||
                $isAccept = Yii::$app->request->post('accept');
 | 
			
		||||
                $isAccept = null;
 | 
			
		||||
                if ($isAccept === null) {
 | 
			
		||||
                    throw new AcceptRequiredException();
 | 
			
		||||
                }
 | 
			
		||||
 
 | 
			
		||||
@@ -206,9 +206,9 @@ class Account extends ActiveRecord implements IdentityInterface {
 | 
			
		||||
     * @return bool
 | 
			
		||||
     */
 | 
			
		||||
    public function canAutoApprove(OauthClient $client, array $scopes = []) {
 | 
			
		||||
        if ($client->is_trusted) {
 | 
			
		||||
            return true;
 | 
			
		||||
        }
 | 
			
		||||
        //if ($client->is_trusted) {
 | 
			
		||||
        //    return true;
 | 
			
		||||
        //}
 | 
			
		||||
 | 
			
		||||
        /** @var OauthSession|null $session */
 | 
			
		||||
        $session = $this->getSessions()->andWhere(['client_id' => $client->id])->one();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user