mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-12 08:36:13 +01:00
279273dc1c
Summary: Ref T10978. The new controller now does everything the old one did, so swap 'em and nuke the old one. Test Plan: Edited a commit, hit the new controller, things worked real good. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10978 Differential Revision: https://secure.phabricator.com/D17177
12 lines
249 B
PHP
12 lines
249 B
PHP
<?php
|
|
|
|
final class DiffusionCommitEditController
|
|
extends DiffusionController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new DiffusionCommitEditEngine())
|
|
->setController($this)
|
|
->buildResponse();
|
|
}
|
|
|
|
}
|