Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/application/PhabricatorAuthApplication.php
| Show First 20 Lines • Show All 88 Lines • ▼ Show 20 Lines | return array( | ||||
| 'mfa/' => array( | 'mfa/' => array( | ||||
| $this->getQueryRoutePattern() => | $this->getQueryRoutePattern() => | ||||
| 'PhabricatorAuthFactorProviderListController', | 'PhabricatorAuthFactorProviderListController', | ||||
| $this->getEditRoutePattern('edit/') => | $this->getEditRoutePattern('edit/') => | ||||
| 'PhabricatorAuthFactorProviderEditController', | 'PhabricatorAuthFactorProviderEditController', | ||||
| '(?P<id>[1-9]\d*)/' => | '(?P<id>[1-9]\d*)/' => | ||||
| 'PhabricatorAuthFactorProviderViewController', | 'PhabricatorAuthFactorProviderViewController', | ||||
| ), | ), | ||||
| 'message/' => array( | |||||
| $this->getQueryRoutePattern() => | |||||
| 'PhabricatorAuthMessageListController', | |||||
| $this->getEditRoutePattern('edit/') => | |||||
| 'PhabricatorAuthMessageEditController', | |||||
| '(?P<id>[1-9]\d*)/' => | |||||
| 'PhabricatorAuthMessageViewController', | |||||
| ), | |||||
| ), | ), | ||||
| '/oauth/(?P<provider>\w+)/login/' | '/oauth/(?P<provider>\w+)/login/' | ||||
| => 'PhabricatorAuthOldOAuthRedirectController', | => 'PhabricatorAuthOldOAuthRedirectController', | ||||
| '/login/' => array( | '/login/' => array( | ||||
| '' => 'PhabricatorAuthStartController', | '' => 'PhabricatorAuthStartController', | ||||
| 'email/' => 'PhabricatorEmailLoginController', | 'email/' => 'PhabricatorEmailLoginController', | ||||
| Show All 24 Lines | |||||