Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/application/PhabricatorAuthApplication.php
| Show First 20 Lines • Show All 102 Lines • ▼ Show 20 Lines | return array( | ||||
| 'PhabricatorAuthChallengeStatusController', | 'PhabricatorAuthChallengeStatusController', | ||||
| ), | ), | ||||
| 'message/' => array( | 'message/' => array( | ||||
| $this->getQueryRoutePattern() => | $this->getQueryRoutePattern() => | ||||
| 'PhabricatorAuthMessageListController', | 'PhabricatorAuthMessageListController', | ||||
| $this->getEditRoutePattern('edit/') => | $this->getEditRoutePattern('edit/') => | ||||
| 'PhabricatorAuthMessageEditController', | 'PhabricatorAuthMessageEditController', | ||||
| '(?P<id>[1-9]\d*)/' => | '(?P<id>[^/]+)/' => | ||||
| 'PhabricatorAuthMessageViewController', | 'PhabricatorAuthMessageViewController', | ||||
| ), | ), | ||||
| 'contact/' => array( | 'contact/' => array( | ||||
| $this->getEditRoutePattern('edit/') => | $this->getEditRoutePattern('edit/') => | ||||
| 'PhabricatorAuthContactNumberEditController', | 'PhabricatorAuthContactNumberEditController', | ||||
| '(?P<id>[1-9]\d*)/' => | '(?P<id>[1-9]\d*)/' => | ||||
| 'PhabricatorAuthContactNumberViewController', | 'PhabricatorAuthContactNumberViewController', | ||||
| Show All 39 Lines | |||||