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

Mark "Settings" and "Nuance" as launchable applications

Summary:
Fixes T12790. I don't think this was actually a regression, Settings just wasn't launchable before global settings (since it had no real landing page, and the profile menu always had a link) and didn't get marked launchable once we added them.

I also double-checked other un-launchable apps; Nuance is probably close enough to make launchable now while I'm in here.

Test Plan: Typed "settings" into global typeahead, got settings.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12790

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

-9
-5
src/applications/nuance/application/PhabricatorNuanceApplication.php
··· 18 18 return true; 19 19 } 20 20 21 - public function isLaunchable() { 22 - // Try to hide this even more for now. 23 - return false; 24 - } 25 - 26 21 public function getBaseURI() { 27 22 return '/nuance/'; 28 23 }
-4
src/applications/settings/application/PhabricatorSettingsApplication.php
··· 22 22 return false; 23 23 } 24 24 25 - public function isLaunchable() { 26 - return false; 27 - } 28 - 29 25 public function getRoutes() { 30 26 $panel_pattern = '(?:page/(?P<pageKey>[^/]+)/(?:(?P<formSaved>saved)/)?)?'; 31 27