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

Get "Create Revision" out of Quick Create menu for now

Summary:
Ref T12098.

We have two methods (`supportsEditEngineConfiguration()` and `isEngineConfigurable()`) which sort of do the same thing and probably should be merged.

For now, just swap which one we override to get "Create Revision" out of the Quick Create menu.

Test Plan: No more "Create Revision" in Quick Create menu.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12098

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

+1 -1
+1 -1
src/applications/differential/editor/DifferentialRevisionEditEngine.php
··· 29 29 return 'PhabricatorDifferentialApplication'; 30 30 } 31 31 32 - protected function supportsEditEngineConfiguration() { 32 + public function isEngineConfigurable() { 33 33 return false; 34 34 } 35 35