Differential D10493 Diff 25253 src/applications/oauthserver/application/PhabricatorOAuthServerApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/oauthserver/application/PhabricatorOAuthServerApplication.php
| Show All 24 Lines | final class PhabricatorOAuthServerApplication extends PhabricatorApplication { | ||||
| public function getFlavorText() { | public function getFlavorText() { | ||||
| return pht('Login with Phabricator'); | return pht('Login with Phabricator'); | ||||
| } | } | ||||
| public function getApplicationGroup() { | public function getApplicationGroup() { | ||||
| return self::GROUP_ADMIN; | return self::GROUP_ADMIN; | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getHelpURI() { | public function getHelpURI() { | ||||
| return PhabricatorEnv::getDoclink('Using the Phabricator OAuth Server'); | return PhabricatorEnv::getDoclink('Using the Phabricator OAuth Server'); | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| Show All 26 Lines | |||||