This commit is contained in:
Yuri Kuznetsov
2021-07-06 16:14:19 +03:00
parent a1ea97950e
commit 8a4a0f6bdc

View File

@@ -70,9 +70,9 @@ class Kanban
{
$data = $request->getParsedBody();
$entityType = $data->entityType;
$group = $data->group;
$ids = $data->ids;
$entityType = $data->entityType ?? null;
$group = $data->group ?? null;
$ids = $data->ids ?? null;
if (empty($entityType) || !is_string($entityType)) {
throw new BadRequest();