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',
);
}

View File

@@ -0,0 +1,12 @@
<?php
/**
* This file is automatically generated. Lint this module to rebuild it.
* @generated
*/
phutil_require_module('phabricator', 'aphront/response/base');
phutil_require_source('AphrontFileResponse.php');