Skip "Won't Do" issues from changelog
[MAILPOET-1867]
This commit is contained in:
committed by
Pavel Dohnal
parent
f10014d864
commit
7a8ba52b57
@ -50,7 +50,10 @@ class ChangelogController {
|
||||
private function renderList(array $issues, $field) {
|
||||
$messages = [];
|
||||
foreach ($issues as $issue) {
|
||||
if (!isset($issue['fields'][$field])) {
|
||||
if (
|
||||
!isset($issue['fields'][$field])
|
||||
|| ($issue['fields']['resolution']['id'] === Jira::WONT_DO_RESOLUTION_ID)
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
$messages[] = "* " . $this->sanitizePunctuation($issue['fields'][$field], ';');
|
||||
|
Reference in New Issue
Block a user