swagger user

This commit is contained in:
Kavalar 2023-10-11 23:32:30 +03:00
parent 003c671156
commit c691273d02

View File

@ -78,6 +78,23 @@ class UserController extends ApiController
}
/**
*
* @OA\Get(path="/user/me",
* summary="Получить данные пользователя",
* description="Метод для получения данныех пользователя",
* security={
* {"bearerAuth": {}}
* },
* tags={"User"},
* @OA\Response(
* response=200,
* description="Возвращает данные пользователя",
* @OA\MediaType(
* mediaType="application/json",
* ),
* ),
* )
*
* @return \frontend\modules\api\models\User
* @throws BadRequestHttpException
*/