* watcher api endpoint implemented

This commit is contained in:
Dávid Danyi
2018-09-12 17:20:15 +02:00
parent 9d3fa5fa9d
commit 3d42f16c38
9 changed files with 378 additions and 14 deletions

View File

@@ -47,4 +47,5 @@ return function (Application $app, MiddlewareFactory $factory, ContainerInterfac
$app->get('/avatars/{signum}', App\Handler\AvatarHandler::class,'avatar.image');
$app->get('/api/kanban/{teamId:\d+}', App\Handler\KanbanHandler::class,'api.team.kanban');
$app->get('/api/watched/{teamId:\d+}', App\Handler\WatchedHandler::class,'api.team.watched');
};