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

Mention !status explicitly in the documentation for !close

Summary: Ref T10088.

Test Plan: {F1055107}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10088

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

+13 -4
+4 -1
src/applications/maniphest/command/ManiphestClaimEmailCommand.php
··· 8 8 } 9 9 10 10 public function getCommandSummary() { 11 - return pht('Assign yourself as the owner of a task.'); 11 + return pht( 12 + 'Assign yourself as the owner of a task. To assign another user, '. 13 + 'see `%s`.', 14 + '!assign'); 12 15 } 13 16 14 17 public function buildTransactions(
+5 -1
src/applications/maniphest/command/ManiphestCloseEmailCommand.php
··· 8 8 } 9 9 10 10 public function getCommandSummary() { 11 - return pht('Close a task.'); 11 + return pht( 12 + 'Close a task. This changes the task status to the default closed '. 13 + 'status. For a more powerful (but less concise) way to change task '. 14 + 'statuses, see `%s`.', 15 + '!status'); 12 16 } 13 17 14 18 public function buildTransactions(
+4 -2
src/applications/maniphest/command/ManiphestStatusEmailCommand.php
··· 36 36 "To change the status of a task, specify the desired status, like ". 37 37 "`%s`. This table shows the configured names for statuses.\n\n%s\n\n". 38 38 "If you specify an invalid status, the command is ignored. This ". 39 - "command has no effect if you do not specify a status.", 39 + "command has no effect if you do not specify a status.\n\n". 40 + "To quickly close a task, see `%s`.", 40 41 '!status invalid', 41 - $table); 42 + $table, 43 + '!close'); 42 44 } 43 45 44 46 public function buildTransactions(