Рефакторинг. В АПИ добавлены методы в изменения: 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,28 @@
<?php
namespace frontend\modules\api\models\profile;
use frontend\modules\api\services\ProfileService;
class User extends \common\models\User
{
/**
* @return string[]
*/
public function fields(): array
{
return [
'email',
'username',
'userCard' => function () {
if(isset($this->userCard->id)){
return ProfileService::getProfileById($this->userCard->id);
}
return null;
}
];
}
}