mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01: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:
parent
b7b0458303
commit
cfa4156441
1 changed files with 4 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue