mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
fix
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user