mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 19:52:44 +01:00
1534033664
Summary: Update the infrastructure and UI of the client list. Test Plan: {F131570} Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D8563
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationOAuthServer extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/oauthserver/';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('OAuth Provider');
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'oauthserver';
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x99\x86";
|
|
}
|
|
|
|
public function getFlavorText() {
|
|
return pht('Login with Phabricator');
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_UTILITIES;
|
|
}
|
|
|
|
public function isBeta() {
|
|
return true;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/oauthserver/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?'
|
|
=> 'PhabricatorOAuthClientListController',
|
|
'auth/' => 'PhabricatorOAuthServerAuthController',
|
|
'test/' => 'PhabricatorOAuthServerTestController',
|
|
'token/' => 'PhabricatorOAuthServerTokenController',
|
|
'client/' => array(
|
|
'create/' => 'PhabricatorOAuthClientEditController',
|
|
'delete/(?P<phid>[^/]+)/' => 'PhabricatorOAuthClientDeleteController',
|
|
'edit/(?P<phid>[^/]+)/' => 'PhabricatorOAuthClientEditController',
|
|
'view/(?P<phid>[^/]+)/' => 'PhabricatorOAuthClientViewController',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
protected function getCustomCapabilities() {
|
|
return array(
|
|
PhabricatorOAuthServerCapabilityCreateClients::CAPABILITY => array(
|
|
'default' => PhabricatorPolicies::POLICY_ADMIN,
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|