Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/application/PhabricatorAuthApplication.php
| Show First 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | return array( | ||||
| 'confirmlink/(?P<akey>[^/]+)/' | 'confirmlink/(?P<akey>[^/]+)/' | ||||
| => 'PhabricatorAuthConfirmLinkController', | => 'PhabricatorAuthConfirmLinkController', | ||||
| 'session/terminate/(?P<id>[^/]+)/' | 'session/terminate/(?P<id>[^/]+)/' | ||||
| => 'PhabricatorAuthTerminateSessionController', | => 'PhabricatorAuthTerminateSessionController', | ||||
| 'token/revoke/(?P<id>[^/]+)/' | 'token/revoke/(?P<id>[^/]+)/' | ||||
| => 'PhabricatorAuthRevokeTokenController', | => 'PhabricatorAuthRevokeTokenController', | ||||
| 'session/downgrade/' | 'session/downgrade/' | ||||
| => 'PhabricatorAuthDowngradeSessionController', | => 'PhabricatorAuthDowngradeSessionController', | ||||
| 'multifactor/' | 'enroll/' => array( | ||||
| '(?:(?P<pageKey>[^/]+)/)?(?:(?P<formSaved>saved)/)?' | |||||
| => 'PhabricatorAuthNeedsMultiFactorController', | => 'PhabricatorAuthNeedsMultiFactorController', | ||||
| ), | |||||
| 'sshkey/' => array( | 'sshkey/' => array( | ||||
| $this->getQueryRoutePattern('for/(?P<forPHID>[^/]+)/') | $this->getQueryRoutePattern('for/(?P<forPHID>[^/]+)/') | ||||
| => 'PhabricatorAuthSSHKeyListController', | => 'PhabricatorAuthSSHKeyListController', | ||||
| 'generate/' => 'PhabricatorAuthSSHKeyGenerateController', | 'generate/' => 'PhabricatorAuthSSHKeyGenerateController', | ||||
| 'upload/' => 'PhabricatorAuthSSHKeyEditController', | 'upload/' => 'PhabricatorAuthSSHKeyEditController', | ||||
| 'edit/(?P<id>\d+)/' => 'PhabricatorAuthSSHKeyEditController', | 'edit/(?P<id>\d+)/' => 'PhabricatorAuthSSHKeyEditController', | ||||
| 'revoke/(?P<id>\d+)/' | 'revoke/(?P<id>\d+)/' | ||||
| => 'PhabricatorAuthSSHKeyRevokeController', | => 'PhabricatorAuthSSHKeyRevokeController', | ||||
| ▲ Show 20 Lines • Show All 60 Lines • Show Last 20 Lines | |||||