mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
d467a9e337
Summary: Just a small touch up to move this to edit engine. Test Plan: - Create a question - Edit a question - Close question - Test NUX state Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17812
11 lines
243 B
PHP
11 lines
243 B
PHP
<?php
|
|
|
|
final class PonderQuestionEditController extends
|
|
PonderController {
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new PonderQuestionEditEngine())
|
|
->setController($this)
|
|
->buildResponse();
|
|
}
|
|
|
|
}
|