1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Turn off subprojects and milestones in the UI completely for now

Summary: A lot of confusing stuff happens when you create a milestone or subproject which isn't explained clearly in the UI. This is causing more harm than good on the balance since we're still figuring out how to move forward here. Just turn it off for now until we're closer to pushing it forward.

Test Plan: Viewed a project, no more UI for subprojects or milestones.

Reviewers: chad

Reviewed By: chad

Differential Revision: https://secure.phabricator.com/D14999
This commit is contained in:
epriestley 2016-01-11 14:31:12 -08:00
parent 7e0558612b
commit 39a87f6000

View file

@ -149,7 +149,7 @@ abstract class PhabricatorProjectController extends PhabricatorController {
$nav->addIcon("feed/{$id}/", pht('Feed'), 'fa-newspaper-o');
$nav->addIcon("members/{$id}/", pht('Members'), 'fa-group');
if (PhabricatorEnv::getEnvConfig('phabricator.show-prototypes')) {
if (false && PhabricatorEnv::getEnvConfig('phabricator.show-prototypes')) {
if ($project->supportsSubprojects()) {
$subprojects_icon = 'fa-sitemap';
} else {
@ -173,7 +173,6 @@ abstract class PhabricatorProjectController extends PhabricatorController {
$milestones_icon);
}
return $nav;
}