Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / legalpad / controller / LegalpadDocumentDoneController.php
blobb12e3f65adda5b0c92b1f2970bdde8711e30216c
1 <?php
3 final class LegalpadDocumentDoneController extends LegalpadController {
5 public function shouldAllowPublic() {
6 return true;
9 public function handleRequest(AphrontRequest $request) {
10 $viewer = $request->getViewer();
12 return $this->newDialog()
13 ->setTitle(pht('Verify Signature'))
14 ->appendParagraph(
15 pht(
16 'Thank you for signing this document. Please check your email '.
17 'to verify your signature and complete the process.'))
18 ->addCancelButton('/', pht('Okay'));