mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-20 10:48:40 +01:00
Summary: Updates Legalpad to use EditEngine, paving the way for //transaction comments//. Spooky. Test Plan: - New Document - Require signing, Corp - see fail - Require signing, Noone - see fail - Require signing, Ind - get asked to sign - Edit Document Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17862
11 lines
248 B
PHP
11 lines
248 B
PHP
<?php
|
|
|
|
final class LegalpadDocumentEditController extends LegalpadController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new LegalpadDocumentEditEngine())
|
|
->setController($this)
|
|
->buildResponse();
|
|
}
|
|
|
|
}
|