Basic user/account tool.

This commit is contained in:
epriestley
2011-01-23 18:09:16 -08:00
parent 0eac30d80d
commit 89dae65c35
15 changed files with 484 additions and 0 deletions

View File

@@ -64,6 +64,11 @@ class AphrontDefaultApplicationConfiguration
'type/edit/(?:(?<id>\d+)/)?$' => 'PhabricatorPHIDTypeEditController',
'new/$' => 'PhabricatorPHIDAllocateController',
),
'/people/' => array(
'$' => 'PhabricatorPeopleListController',
'edit/(?:(?<username>\w+)/)?$' => 'PhabricatorPeopleEditController',
),
'/p/(?<username>\w+)/$' => 'PhabricatorPeopleProfileController',
'.*' => 'AphrontDefaultApplicationController',
);
}