guild/frontend/modules/api/controllers/ProfileController.php
2022-03-21 14:56:21 +03:00

30 lines
679 B
PHP
Executable File

<?php
namespace frontend\modules\api\controllers;
use common\services\ProfileService;
use yii\web\BadRequestHttpException;
class ProfileController extends ApiController
{
public function verbs(): array
{
return [
'' => ['get'],
'profile-with-report-permission' => ['post', 'patch']
];
}
public function actionIndex($id = null)
{
return ProfileService::getProfile($id, \Yii::$app->request->get());
}
/**
* @throws BadRequestHttpException
*/
public function actionProfileWithReportPermission($id): ?array
{
return ProfileService::getProfileWithReportPermission($id);
}
}