From b9a4988df36ceac490af7a55b528c08594d75d2a Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 1 Jun 2017 12:31:22 -0700 Subject: [PATCH] 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 --- .../nuance/application/PhabricatorNuanceApplication.php | 5 ----- .../settings/application/PhabricatorSettingsApplication.php | 4 ---- 2 files changed, 9 deletions(-) diff --git a/src/applications/nuance/application/PhabricatorNuanceApplication.php b/src/applications/nuance/application/PhabricatorNuanceApplication.php index cd268dd95e..dc18a6585f 100644 --- a/src/applications/nuance/application/PhabricatorNuanceApplication.php +++ b/src/applications/nuance/application/PhabricatorNuanceApplication.php @@ -18,11 +18,6 @@ final class PhabricatorNuanceApplication extends PhabricatorApplication { return true; } - public function isLaunchable() { - // Try to hide this even more for now. - return false; - } - public function getBaseURI() { return '/nuance/'; } diff --git a/src/applications/settings/application/PhabricatorSettingsApplication.php b/src/applications/settings/application/PhabricatorSettingsApplication.php index d5add43d46..e5e0034e1a 100644 --- a/src/applications/settings/application/PhabricatorSettingsApplication.php +++ b/src/applications/settings/application/PhabricatorSettingsApplication.php @@ -22,10 +22,6 @@ final class PhabricatorSettingsApplication extends PhabricatorApplication { return false; } - public function isLaunchable() { - return false; - } - public function getRoutes() { $panel_pattern = '(?:page/(?P[^/]+)/(?:(?Psaved)/)?)?';