* avatar overrides added

* cli commands framework added
* labinfo service for lab temp monitoring
* kanban entry label support
This commit is contained in:
Dávid Danyi
2017-08-18 15:49:19 +02:00
parent f6e918ed86
commit 1ab6691827
23 changed files with 727 additions and 59 deletions

View File

@@ -47,6 +47,11 @@ class KanbanEntry implements \JsonSerializable
*/
private $issuePriorityIcon;
/**
* @var string[]
*/
private $labels;
/**
* JIRA: customfield_11226
* @var int
@@ -277,6 +282,24 @@ class KanbanEntry implements \JsonSerializable
return $this;
}
/**
* @return string[]
*/
public function getLabels(): ?array
{
return $this->labels;
}
/**
* @param string[] $labels
* @return KanbanEntry
*/
public function setLabels(?array $labels): KanbanEntry
{
$this->labels = $labels;
return $this;
}
/**
* @return string[]|ArrayCollection
*/
@@ -477,6 +500,7 @@ class KanbanEntry implements \JsonSerializable
'assignee' => $this->getAssignee(),
'issuePriority' => $this->getIssuePriority(),
'issuePriorityIcon' => $this->getIssuePriorityIcon(),
'labels' => $this->getLabels(),
'prio' => $this->getPrio(),
'functionalArea' => $this->getFunctionalAreas()->getValues(),
'externalId' => $this->getExternalId(),