registration and get user info

This commit is contained in:
2023-10-11 23:19:30 +03:00
parent 75aae8e4df
commit 003c671156
4 changed files with 76 additions and 27 deletions

View File

@ -68,6 +68,14 @@ class ProfileService
return $searchModel->byParams();
}
public static function getProfileById($id): ?array
{
$searchModel = new ProfileSearchForm();
$searchModel->id = $id;
return $searchModel->byId();
}
/**
* @throws ServerErrorHttpException
*/