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

Update the "owner can always view/edit" policy exception rule

Summary: Fixes T13460. This rule vanished from the UI in D20165; update things so it returns to the UI.

Test Plan: {F7035134}

Maniphest Tasks: T13460

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

+9 -4
+9
src/applications/maniphest/policy/ManiphestTaskPolicyCodex.php
··· 42 42 $rules[] = $this->newRule() 43 43 ->setCapabilities( 44 44 array( 45 + PhabricatorPolicyCapability::CAN_VIEW, 46 + PhabricatorPolicyCapability::CAN_EDIT, 47 + )) 48 + ->setDescription( 49 + pht('The owner of a task can always view and edit it.')); 50 + 51 + $rules[] = $this->newRule() 52 + ->setCapabilities( 53 + array( 45 54 PhabricatorPolicyCapability::CAN_EDIT, 46 55 )) 47 56 ->setIsActive($object->areEditsLocked())
-4
src/applications/maniphest/storage/ManiphestTask.php
··· 358 358 return false; 359 359 } 360 360 361 - public function describeAutomaticCapability($capability) { 362 - return pht('The owner of a task can always view and edit it.'); 363 - } 364 - 365 361 366 362 /* -( PhabricatorTokenReceiverInterface )---------------------------------- */ 367 363