Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/application/PhabricatorAuthApplication.php
| Show First 20 Lines • Show All 107 Lines • ▼ Show 20 Lines | return array( | ||||
| 'contact/' => array( | 'contact/' => array( | ||||
| $this->getEditRoutePattern('edit/') => | $this->getEditRoutePattern('edit/') => | ||||
| 'PhabricatorAuthContactNumberEditController', | 'PhabricatorAuthContactNumberEditController', | ||||
| '(?P<id>[1-9]\d*)/' => | '(?P<id>[1-9]\d*)/' => | ||||
| 'PhabricatorAuthContactNumberViewController', | 'PhabricatorAuthContactNumberViewController', | ||||
| '(?P<action>disable|enable)/(?P<id>[1-9]\d*)/' => | '(?P<action>disable|enable)/(?P<id>[1-9]\d*)/' => | ||||
| 'PhabricatorAuthContactNumberDisableController', | 'PhabricatorAuthContactNumberDisableController', | ||||
| 'primary/(?P<id>[1-9]\d*)/' => | |||||
| 'PhabricatorAuthContactNumberPrimaryController', | |||||
| ), | ), | ||||
| ), | ), | ||||
| '/oauth/(?P<provider>\w+)/login/' | '/oauth/(?P<provider>\w+)/login/' | ||||
| => 'PhabricatorAuthOldOAuthRedirectController', | => 'PhabricatorAuthOldOAuthRedirectController', | ||||
| '/login/' => array( | '/login/' => array( | ||||
| '' => 'PhabricatorAuthStartController', | '' => 'PhabricatorAuthStartController', | ||||
| Show All 25 Lines | |||||