mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 05:20:56 +01:00
Restore user edit controller, remove profile edit controller
Summary: I took the wrong route out of the URI map in rP0de2e03cc245723fd64f410f5fe22ee65f05f568. The removed route was user account editing/creation. The intended route was profile editing (now in Settings). Test Plan: - Clicked "Create New Account", got account create interface instead of 404. - Went to /profile/edit/, got 404 instead of class-not-found exception. Reviewed By: moskov Reviewers: moskov, jungejason, tuomaspelkonen, aran CC: aran, moskov Differential Revision: 731
This commit is contained in:
parent
aeae33b7d6
commit
9d94ea9fdf
1 changed files with 2 additions and 3 deletions
|
@ -72,12 +72,11 @@ class AphrontDefaultApplicationConfiguration
|
|||
'/people/' => array(
|
||||
'$' => 'PhabricatorPeopleListController',
|
||||
'logs/$' => 'PhabricatorPeopleLogsController',
|
||||
'edit/(?:(?P<id>\d+)/(?:(?P<view>\w+)/)?)?$'
|
||||
=> 'PhabricatorPeopleEditController',
|
||||
),
|
||||
'/p/(?P<username>\w+)/(?:(?P<page>\w+)/)?$'
|
||||
=> 'PhabricatorPeopleProfileController',
|
||||
'/profile/' => array(
|
||||
'edit/$' => 'PhabricatorPeopleProfileEditController',
|
||||
),
|
||||
'/conduit/' => array(
|
||||
'$' => 'PhabricatorConduitConsoleController',
|
||||
'method/(?P<method>[^/]+)$' => 'PhabricatorConduitConsoleController',
|
||||
|
|
Loading…
Reference in a new issue