Conduit server-side basics.

This commit is contained in:
epriestley
2011-01-24 09:00:29 -08:00
parent fb9b0db726
commit 2aaa95e640
28 changed files with 987 additions and 0 deletions

View File

@@ -69,6 +69,12 @@ class AphrontDefaultApplicationConfiguration
'edit/(?:(?<username>\w+)/)?$' => 'PhabricatorPeopleEditController',
),
'/p/(?<username>\w+)/$' => 'PhabricatorPeopleProfileController',
'/conduit/' => array(
'$' => 'PhabricatorConduitConsoleController',
'method/(?<method>[^/]+)$' => 'PhabricatorConduitConsoleController',
'log/$' => 'PhabricatorConduitLogController',
),
'/api/(?<method>[^/]+)$' => 'PhabricatorConduitAPIController',
'.*' => 'AphrontDefaultApplicationController',
);
}