Move Conduit methods inside applications

Test Plan:
/conduit/
/conduit/method/arcanist.projectinfo/
Call method

  $ echo '{}' | arc call-conduit user.whoami

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4268
This commit is contained in:
vrana
2012-12-21 12:12:26 -08:00
parent 96e5264f05
commit 2cc7f82ece
98 changed files with 97 additions and 97 deletions

View File

@@ -0,0 +1,11 @@
<?php
final class PhabricatorXHPASTViewInputController
extends PhabricatorXHPASTViewPanelController {
public function processRequest() {
$input = $this->getStorageTree()->getInput();
return $this->buildXHPASTViewPanelResponse(
phutil_escape_html($input));
}
}