Differential D10493 Diff 25253 src/applications/phortune/application/PhabricatorPhortuneApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phortune/application/PhabricatorPhortuneApplication.php
| Show All 20 Lines | final class PhabricatorPhortuneApplication extends PhabricatorApplication { | ||||
| public function getTitleGlyph() { | public function getTitleGlyph() { | ||||
| return "\xE2\x9C\x98"; | return "\xE2\x9C\x98"; | ||||
| } | } | ||||
| public function getApplicationGroup() { | public function getApplicationGroup() { | ||||
| return self::GROUP_UTILITIES; | return self::GROUP_UTILITIES; | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/phortune/' => array( | '/phortune/' => array( | ||||
| '' => 'PhortuneLandingController', | '' => 'PhortuneLandingController', | ||||
| '(?P<accountID>\d+)/' => array( | '(?P<accountID>\d+)/' => array( | ||||
| Show All 33 Lines | |||||