@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.

Unprototype "Draft" mode in Differential

Summary: Fixes T2543. This mode has been a stable prototype for a very long time now; promote it so "--draft" can promote out of "experimental" in Arcanist.

Test Plan: See T2543 for discussion.

Maniphest Tasks: T2543

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

+2 -7
+2 -7
src/applications/differential/storage/DifferentialRevision.php
··· 73 73 $view_policy = $app->getPolicy( 74 74 DifferentialDefaultViewCapability::CAPABILITY); 75 75 76 - if (PhabricatorEnv::getEnvConfig('phabricator.show-prototypes')) { 77 - $initial_state = DifferentialRevisionStatus::DRAFT; 78 - $should_broadcast = false; 79 - } else { 80 - $initial_state = DifferentialRevisionStatus::NEEDS_REVIEW; 81 - $should_broadcast = true; 82 - } 76 + $initial_state = DifferentialRevisionStatus::DRAFT; 77 + $should_broadcast = false; 83 78 84 79 return id(new DifferentialRevision()) 85 80 ->setViewPolicy($view_policy)