mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 07:58:18 +02:00
Summary: This got written a while ago and is using slightly incorrect gating on logged-out users. The names of these methods should probably be more clear too, but basically "shouldAllowPublic()" is for "this page may be usable to logged-out users, if policies allow it", while "shouldRequireLogin()" is for "this page should skip various credential checks". One of the skipped checks is email verification. This method should maybe be something like "isAuthenticationRelatedOrNoncredentialPage()" but I don't have a good name for that. Test Plan: Unverified users are now prompted to verify email when viewing a legalpad document, instead of allowed to sign it. Reviewers: rush898, chad Reviewed By: chad Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D9857
22 lines
552 B
PHP
22 lines
552 B
PHP
<?php
|
|
|
|
final class LegalpadDocumentDoneController extends LegalpadController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return false;
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$viewer = $request->getUser();
|
|
|
|
return $this->newDialog()
|
|
->setTitle(pht('Verify Signature'))
|
|
->appendParagraph(
|
|
pht(
|
|
'Thank you for signing this document. Please check your email '.
|
|
'to verify your signature and complete the process.'))
|
|
->addCancelButton('/', pht('Okay'));
|
|
}
|
|
|
|
}
|