* multiple team kanban board implementation added

* active flag is now working as intended
* iframe slide type added
* team-slide connection is now many-to-many
This commit is contained in:
Dávid Danyi
2018-09-05 17:01:40 +02:00
parent c096510b3d
commit cfc388aa77
10 changed files with 364 additions and 121 deletions

4
src/App/Handler/KanbanHandler.php Normal file → Executable file
View File

@@ -32,9 +32,9 @@ class KanbanHandler implements RequestHandlerInterface
*/
public function handle(ServerRequestInterface $request): ResponseInterface
{
$filterId = $request->getAttribute('filterId');
$teamId = (int)$request->getAttribute('teamId');
/** @var KanbanBoard $kanbanResult */
$kanbanResult = $this->dataCollector->getKanbanBoard($filterId);
$kanbanResult = $this->dataCollector->getKanbanBoard($teamId);
return new JsonResponse($kanbanResult);
}
}