@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Allow public access to the project edit/history page

Summary: Fixes T6807. This page shows edit history and has edit options, but is not an edit interface itself per se. Allowing public access is consistent with other interfaces/applications.

Test Plan: Viewed a public project's history page as a public user.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T6807

Differential Revision: https://secure.phabricator.com/D11039

+6
+6
src/applications/project/controller/PhabricatorProjectEditMainController.php
··· 5 5 6 6 private $id; 7 7 8 + public function shouldAllowPublic() { 9 + // This page shows project history and some detailed information, and 10 + // it's reasonable to allow public access to it. 11 + return true; 12 + } 13 + 8 14 public function willProcessRequest(array $data) { 9 15 $this->id = idx($data, 'id'); 10 16 }