Maniphest wireframes

Summary:

Test Plan:

Reviewers:

CC:
This commit is contained in:
epriestley
2011-02-08 10:53:59 -08:00
parent 3018d44279
commit 6ec5e682f4
42 changed files with 1931 additions and 3 deletions

View File

@@ -139,6 +139,19 @@ class AphrontDefaultApplicationConfiguration
'/settings/' => array(
'(?:page/(?P<page>[^/]+)/)?$' => 'PhabricatorUserSettingsController',
),
'/maniphest/' => array(
'$' => 'ManiphestTaskListController',
'view/(?P<view>\w+)/$' => 'ManiphestTaskListController',
'task/' => array(
'create/' => 'ManiphestTaskCreateController',
),
'transaction/' => array(
'save/' => 'ManiphestTransactionSaveController',
),
),
'/T(?P<id>\d+)$' => 'ManiphestTaskDetailController',
);
}