* story also got epic name
This commit is contained in:
parent
4d5b26642e
commit
efb5004cd3
@ -230,7 +230,10 @@ class JiraCollectorService
|
||||
}
|
||||
|
||||
// epicName: has parent, and parent has customfield_10001
|
||||
if (isset($jsonIssue['fields']['parent'])) {
|
||||
if (isset($jsonIssue['fields']['customfield_10001'])) {
|
||||
$epicName = $this->getEpicNameFromParent($jsonIssue['key']);
|
||||
$kanbanEntry->setEpicName($epicName);
|
||||
} elseif (isset($jsonIssue['fields']['parent'])) {
|
||||
$epicName = $this->getEpicNameFromParent($jsonIssue['fields']['parent']['key']);
|
||||
$kanbanEntry->setEpicName($epicName);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user