1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Conpherence - actually remove route from feedback in D12215

Summary: pebkac issue of some sort and I didn't actually commit removing the defunct /conpherence/room/ uri route

Test Plan: made a new room and it worked

Reviewers: chad, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D12216
This commit is contained in:
Bob Trahan 2015-03-30 16:29:08 -07:00
parent 89fe35cb0e
commit b200c3bd78

View file

@ -36,10 +36,7 @@ final class PhabricatorConpherenceApplication extends PhabricatorApplication {
'(?P<id>[1-9]\d*)/' => 'ConpherenceViewController', '(?P<id>[1-9]\d*)/' => 'ConpherenceViewController',
'columnview/' => 'ConpherenceColumnViewController', 'columnview/' => 'ConpherenceColumnViewController',
'new/' => 'ConpherenceNewController', 'new/' => 'ConpherenceNewController',
'room/' => array( 'room/new/' => 'ConpherenceNewRoomController',
'(?:query/(?P<queryKey>[^/]+)/)?' => 'ConpherenceRoomListController',
'new/' => 'ConpherenceNewRoomController',
),
'search/(?:query/(?P<queryKey>[^/]+)/)?' 'search/(?:query/(?P<queryKey>[^/]+)/)?'
=> 'ConpherenceRoomListController', => 'ConpherenceRoomListController',
'panel/' => 'ConpherenceNotificationPanelController', 'panel/' => 'ConpherenceNotificationPanelController',