From cfa41564411003e95f549c1c26dc8d9291fccf25 Mon Sep 17 00:00:00 2001 From: epriestley Date: Sun, 22 Jun 2014 08:05:19 -0700 Subject: [PATCH] Make dashboard application launchable Summary: Ref T4980. This isn't quite ready to unbeta yet, but it's good enough to be shown in the launch view. Also, name it "Dashboards" in the UI. Test Plan: Viewed launcher, saw Dashboards. Clicked it, got to dashboard main page. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T4980 Differential Revision: https://secure.phabricator.com/D9650 --- .../application/PhabricatorApplicationDashboard.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/applications/dashboard/application/PhabricatorApplicationDashboard.php b/src/applications/dashboard/application/PhabricatorApplicationDashboard.php index c47c317cf0..932921ad19 100644 --- a/src/applications/dashboard/application/PhabricatorApplicationDashboard.php +++ b/src/applications/dashboard/application/PhabricatorApplicationDashboard.php @@ -2,6 +2,10 @@ final class PhabricatorApplicationDashboard extends PhabricatorApplication { + public function getName() { + return pht('Dashboards'); + } + public function getBaseURI() { return '/dashboard/'; } @@ -53,12 +57,6 @@ final class PhabricatorApplicationDashboard extends PhabricatorApplication { return true; } - public function isLaunchable() { - // TODO: This is just concealing the application from launch views for - // now since it's not really beta yet. - return false; - } - public function canUninstall() { return false; }