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

Prevent hiding the PhabricatorProjectDetailsProfileMenuItem

Summary: This probably isn't the best solution, however, it conveniently avoids the bug from T13033. It would probably be more user-friendly (but more difficult to implement) if we allowed either Project Details //or// Workboard to be hidden but not both.

Test Plan: Tested locally, indeed this prevents hiding the menu item.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

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

authored by

Mukunda Modell and committed by
epriestley
bd5aa0c9 84cf4938

+5
+5
src/applications/project/menuitem/PhabricatorProjectDetailsProfileMenuItem.php
··· 13 13 return pht('Project Details'); 14 14 } 15 15 16 + public function canHideMenuItem( 17 + PhabricatorProfileMenuItemConfiguration $config) { 18 + return false; 19 + } 20 + 16 21 public function canMakeDefault( 17 22 PhabricatorProfileMenuItemConfiguration $config) { 18 23 return true;