@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Support postponed lint status in creatediff conduit call

Test Plan:
Created diff with a postponed linter and the lint status set to such
via arcanist. Verified lint status showed as postponed in diff view.

Reviewers: epriestley, vrana

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T1332

Differential Revision: https://secure.phabricator.com/D2932

+5 -2
+5 -2
src/applications/conduit/method/differential/ConduitAPI_differential_creatediff_Method.php
··· 41 41 'arcanistProject' => 'optional string', 42 42 'repositoryUUID' => 'optional string', 43 43 'lintStatus' => 44 - 'required enum<none, skip, okay, warn, fail>', 44 + 'required enum<none, skip, okay, warn, fail, postponed>', 45 45 'unitStatus' => 46 - 'required enum<none, skip, okay, warn, fail>', 46 + 'required enum<none, skip, okay, warn, fail, postponed>', 47 47 ); 48 48 } 49 49 ··· 120 120 break; 121 121 case 'fail': 122 122 $diff->setLintStatus(DifferentialLintStatus::LINT_FAIL); 123 + break; 124 + case 'postponed': 125 + $diff->setLintStatus(DifferentialLintStatus::LINT_POSTPONED); 123 126 break; 124 127 case 'none': 125 128 default: