diff --git a/src/applications/base/PhabricatorApplication.php b/src/applications/base/PhabricatorApplication.php --- a/src/applications/base/PhabricatorApplication.php +++ b/src/applications/base/PhabricatorApplication.php @@ -12,12 +12,9 @@ implements PhabricatorPolicyInterface { const GROUP_CORE = 'core'; - const GROUP_COMMUNICATION = 'communication'; - const GROUP_ORGANIZATION = 'organization'; const GROUP_UTILITIES = 'util'; const GROUP_ADMIN = 'admin'; const GROUP_DEVELOPER = 'developer'; - const GROUP_MISC = 'misc'; const TILE_INVISIBLE = 'invisible'; const TILE_HIDE = 'hide'; @@ -27,12 +24,9 @@ public static function getApplicationGroups() { return array( self::GROUP_CORE => pht('Core Applications'), - self::GROUP_COMMUNICATION => pht('Communication'), - self::GROUP_ORGANIZATION => pht('Organization'), self::GROUP_UTILITIES => pht('Utilities'), self::GROUP_ADMIN => pht('Administration'), self::GROUP_DEVELOPER => pht('Developer Tools'), - self::GROUP_MISC => pht('Miscellaneous Applications'), ); } @@ -147,7 +141,7 @@ } public function getApplicationGroup() { - return self::GROUP_MISC; + return self::GROUP_CORE; } public function getTitleGlyph() { diff --git a/src/applications/calendar/application/PhabricatorApplicationCalendar.php b/src/applications/calendar/application/PhabricatorApplicationCalendar.php --- a/src/applications/calendar/application/PhabricatorApplicationCalendar.php +++ b/src/applications/calendar/application/PhabricatorApplicationCalendar.php @@ -24,10 +24,6 @@ return "\xE2\x8C\xA8"; } - public function getApplicationGroup() { - return self::GROUP_COMMUNICATION; - } - public function isBeta() { return true; } diff --git a/src/applications/chatlog/applications/PhabricatorApplicationChatLog.php b/src/applications/chatlog/applications/PhabricatorApplicationChatLog.php --- a/src/applications/chatlog/applications/PhabricatorApplicationChatLog.php +++ b/src/applications/chatlog/applications/PhabricatorApplicationChatLog.php @@ -23,7 +23,7 @@ } public function getApplicationGroup() { - return self::GROUP_COMMUNICATION; + return self::GROUP_UTILITIES; } public function getRoutes() { diff --git a/src/applications/conpherence/application/PhabricatorApplicationConpherence.php b/src/applications/conpherence/application/PhabricatorApplicationConpherence.php --- a/src/applications/conpherence/application/PhabricatorApplicationConpherence.php +++ b/src/applications/conpherence/application/PhabricatorApplicationConpherence.php @@ -1,8 +1,5 @@