diff --git a/src/applications/conpherence/application/PhabricatorApplicationConpherence.php b/src/applications/conpherence/application/PhabricatorApplicationConpherence.php index 013fdf8c95..87e26d816b 100644 --- a/src/applications/conpherence/application/PhabricatorApplicationConpherence.php +++ b/src/applications/conpherence/application/PhabricatorApplicationConpherence.php @@ -1,56 +1,52 @@ getBaseURI().'new/'; } public function getShortDescription() { return pht('Messaging'); } public function getIconName() { return 'conpherence'; } public function getTitleGlyph() { return "\xE2\x98\x8E"; } public function getApplicationGroup() { return self::GROUP_COMMUNICATION; } public function getEventListeners() { return array( new ConpherencePeopleMenuEventListener(), new ConpherenceHovercardEventListener(), ); } public function getRoutes() { return array( '/conpherence/' => array( '' => 'ConpherenceListController', 'thread/(?P[1-9]\d*)/' => 'ConpherenceListController', '(?P[1-9]\d*)/' => 'ConpherenceViewController', 'new/' => 'ConpherenceNewController', 'widget/(?P[1-9]\d*)/' => 'ConpherenceWidgetController', 'update/(?P[1-9]\d*)/' => 'ConpherenceUpdateController', ), ); } }