1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

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
This commit is contained in:
epriestley 2014-06-22 08:05:19 -07:00
parent b7b0458303
commit cfa4156441

View file

@ -2,6 +2,10 @@
final class PhabricatorApplicationDashboard extends PhabricatorApplication { final class PhabricatorApplicationDashboard extends PhabricatorApplication {
public function getName() {
return pht('Dashboards');
}
public function getBaseURI() { public function getBaseURI() {
return '/dashboard/'; return '/dashboard/';
} }
@ -53,12 +57,6 @@ final class PhabricatorApplicationDashboard extends PhabricatorApplication {
return true; 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() { public function canUninstall() {
return false; return false;
} }