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

Make project menus unconditionally configurable

Summary: Fixes T10213. I think the "Edit" item was originally conditional (or maybe I just forgot to add that part), but that got dropped when we swapped how it worked. This is all stable now anyway and can be available without needing prototypes enabled.

Test Plan: Edited a project menu.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10213

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

+5 -3
+4
src/applications/project/engine/PhabricatorProjectProfilePanelEngine.php
··· 3 3 final class PhabricatorProjectProfilePanelEngine 4 4 extends PhabricatorProfilePanelEngine { 5 5 6 + protected function isPanelEngineConfigurable() { 7 + return true; 8 + } 9 + 6 10 protected function getPanelURI($path) { 7 11 $project = $this->getProfileObject(); 8 12 $id = $project->getID();
+1 -3
src/applications/search/engine/PhabricatorProfilePanelEngine.php
··· 49 49 50 50 abstract protected function getPanelURI($path); 51 51 52 - protected function isPanelEngineConfigurable() { 53 - return PhabricatorEnv::getEnvConfig('phabricator.show-prototypes'); 54 - } 52 + abstract protected function isPanelEngineConfigurable(); 55 53 56 54 public function buildResponse() { 57 55 $controller = $this->getController();