Рефакторинг. В АПИ добавлены методы в изменения: username, email, password

This commit is contained in:
iIronside
2023-10-20 15:02:59 +03:00
parent b02d0b3ddf
commit 672d0833c5
10 changed files with 385 additions and 77 deletions

View File

@ -0,0 +1,32 @@
<?php
namespace frontend\modules\api\models\profile;
use yii\base\Model;
class ProfileChangeEmailForm extends Model
{
public $newEmail;
/**
* @return array
*/
public function rules()
{
return [
[['newEmail'], 'string'],
[['newEmail'], 'required'],
[['newEmail'], 'email'],
['newEmail', 'unique', 'targetAttribute' => 'email', 'targetClass' => User::class],
];
}
/**
* @return string
*/
public function formName(): string
{
return '';
}
}