Changeset View
Changeset View
Standalone View
Standalone View
src/applications/people/application/PhabricatorPeopleApplication.php
| Show All 38 Lines | final class PhabricatorPeopleApplication extends PhabricatorApplication { | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/people/' => array( | '/people/' => array( | ||||
| $this->getQueryRoutePattern() => 'PhabricatorPeopleListController', | $this->getQueryRoutePattern() => 'PhabricatorPeopleListController', | ||||
| 'logs/' => array( | 'logs/' => array( | ||||
| $this->getQueryRoutePattern() => 'PhabricatorPeopleLogsController', | $this->getQueryRoutePattern() => 'PhabricatorPeopleLogsController', | ||||
| '(?P<id>\d+)/' => 'PhabricatorPeopleLogViewController', | |||||
| ), | ), | ||||
| 'invite/' => array( | 'invite/' => array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' | '(?:query/(?P<queryKey>[^/]+)/)?' | ||||
| => 'PhabricatorPeopleInviteListController', | => 'PhabricatorPeopleInviteListController', | ||||
| 'send/' | 'send/' | ||||
| => 'PhabricatorPeopleInviteSendController', | => 'PhabricatorPeopleInviteSendController', | ||||
| ), | ), | ||||
| 'approve/(?P<id>[1-9]\d*)/(?:via/(?P<via>[^/]+)/)?' | 'approve/(?P<id>[1-9]\d*)/(?:via/(?P<via>[^/]+)/)?' | ||||
| ▲ Show 20 Lines • Show All 59 Lines • Show Last 20 Lines | |||||