* 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

14
src/App/Entity/KanbanBoard.php Normal file → Executable file
View File

@@ -8,20 +8,6 @@ use Doctrine\Common\Collections\ArrayCollection;
class KanbanBoard implements \JsonSerializable
{
// const PRIO_TRIVIAL = 0;
// const PRIO_MINOR = 1;
// const PRIO_MAJOR = 2;
// const PRIO_CRITICAL = 3;
// const PRIO_BLOCKER = 4;
// private $priorityMap = [
// 'Trivial' => self::PRIO_TRIVIAL,
// 'Minor' => self::PRIO_MINOR,
// 'Major' => self::PRIO_MAJOR,
// 'Critical' => self::PRIO_CRITICAL,
// 'Blocker' => self::PRIO_BLOCKER,
// ];
/**
* @var KanbanEntry[]|ArrayCollection
*/