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

Add "reopens" prefix

Summary: Ref T1751. Add a "reopens" prefix for the "open" status. This allows commits to reopen tasks.

Test Plan: Pushed a commit containing `Reopens Tx` and saw `Tx` reopened.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T1751

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

+16
+6
src/applications/maniphest/config/PhabricatorManiphestConfigOptions.php
··· 65 65 'open' => array( 66 66 'name' => pht('Open'), 67 67 'special' => ManiphestTaskStatus::SPECIAL_DEFAULT, 68 + 'prefixes' => array( 69 + 'open', 70 + 'opens', 71 + 'reopen', 72 + 'reopens', 73 + ), 68 74 ), 69 75 'resolved' => array( 70 76 'name' => pht('Resolved'),
+10
src/applications/maniphest/field/parser/__tests__/ManiphestCustomFieldStatusParserTestCase.php
··· 50 50 'Fixes t2apps' => array(), 51 51 'fixes a bug' => array(), 52 52 'Prefixes T2' => array(), 53 + 'Reopens T123' => array( 54 + array( 55 + 'match' => 'Reopens T123', 56 + 'prefix' => 'Reopens', 57 + 'infix' => '', 58 + 'monograms' => array('T123'), 59 + 'suffix' => '', 60 + 'offset' => 0, 61 + ), 62 + ), 53 63 ); 54 64 55 65 foreach ($map as $input => $expect) {