diff --git a/src/applications/project/controller/PhabricatorProjectEditMainController.php b/src/applications/project/controller/PhabricatorProjectEditMainController.php index 295018731d..ec874c789f 100644 --- a/src/applications/project/controller/PhabricatorProjectEditMainController.php +++ b/src/applications/project/controller/PhabricatorProjectEditMainController.php @@ -5,6 +5,12 @@ final class PhabricatorProjectEditMainController private $id; + public function shouldAllowPublic() { + // This page shows project history and some detailed information, and + // it's reasonable to allow public access to it. + return true; + } + public function willProcessRequest(array $data) { $this->id = idx($data, 'id'); }