hot fix
This commit is contained in:
@ -76,7 +76,7 @@ class CommentController extends ApiController
|
||||
* @OA\MediaType(
|
||||
* mediaType="multipart/form-data",
|
||||
* @OA\Schema(
|
||||
* required={"text"},
|
||||
* required={"text", "entity_type", "entity_id"},
|
||||
* @OA\Property(
|
||||
* property="text",
|
||||
* type="string",
|
||||
@ -93,6 +93,11 @@ class CommentController extends ApiController
|
||||
* description="Идентификатор сущности",
|
||||
* ),
|
||||
* @OA\Property(
|
||||
* property="parent_id",
|
||||
* type="integer",
|
||||
* description="Идентификатор родительского комментария",
|
||||
* ),
|
||||
* @OA\Property(
|
||||
* property="status",
|
||||
* type="integer",
|
||||
* description="Статус комментария",
|
||||
|
@ -79,6 +79,11 @@ class TaskController extends ApiController
|
||||
* type="integer",
|
||||
* description="Идентификатор создателя задачи",
|
||||
* ),
|
||||
* @OA\Property(
|
||||
* property="executor_id",
|
||||
* type="integer",
|
||||
* description="Идентификатор исполнителя задачи",
|
||||
* ),
|
||||
* ),
|
||||
* ),
|
||||
* ),
|
||||
@ -271,6 +276,11 @@ class TaskController extends ApiController
|
||||
* nullable=false,
|
||||
* ),
|
||||
* @OA\Property(
|
||||
* property="executor_id",
|
||||
* type="integer",
|
||||
* description="Идентификатор исполнителя задачи",
|
||||
* ),
|
||||
* @OA\Property(
|
||||
* property="task_id",
|
||||
* type="integer",
|
||||
* description="Идентификатор задачи",
|
||||
|
@ -45,6 +45,11 @@ namespace frontend\modules\api\models;
|
||||
* example="19"
|
||||
* ),
|
||||
* @OA\Property(
|
||||
* property="user_id",
|
||||
* type="integer",
|
||||
* example="19"
|
||||
* ),
|
||||
* @OA\Property(
|
||||
* property="employee",
|
||||
* type="object",
|
||||
* ref="#/components/schemas/ProjectTaskUsersShortExample",
|
||||
|
Reference in New Issue
Block a user