Differential D15152 Diff 36584 src/applications/project/application/PhabricatorProjectApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/application/PhabricatorProjectApplication.php
| Show First 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | return array( | ||||
| ), | ), | ||||
| 'update/(?P<id>[1-9]\d*)/(?P<action>[^/]+)/' | 'update/(?P<id>[1-9]\d*)/(?P<action>[^/]+)/' | ||||
| => 'PhabricatorProjectUpdateController', | => 'PhabricatorProjectUpdateController', | ||||
| 'manage/(?P<id>[1-9]\d*)/' => 'PhabricatorProjectManageController', | 'manage/(?P<id>[1-9]\d*)/' => 'PhabricatorProjectManageController', | ||||
| '(?P<action>watch|unwatch)/(?P<id>[1-9]\d*)/' | '(?P<action>watch|unwatch)/(?P<id>[1-9]\d*)/' | ||||
| => 'PhabricatorProjectWatchController', | => 'PhabricatorProjectWatchController', | ||||
| 'silence/(?P<id>[1-9]\d*)/' | 'silence/(?P<id>[1-9]\d*)/' | ||||
| => 'PhabricatorProjectSilenceController', | => 'PhabricatorProjectSilenceController', | ||||
| 'warning/(?P<id>[1-9]\d*)/' | |||||
| => 'PhabricatorProjectSubprojectWarningController', | |||||
| ), | ), | ||||
| '/tag/' => array( | '/tag/' => array( | ||||
| '(?P<slug>[^/]+)/' => 'PhabricatorProjectViewController', | '(?P<slug>[^/]+)/' => 'PhabricatorProjectViewController', | ||||
| '(?P<slug>[^/]+)/board/' => 'PhabricatorProjectBoardViewController', | '(?P<slug>[^/]+)/board/' => 'PhabricatorProjectBoardViewController', | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 46 Lines • Show Last 20 Lines | |||||