@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 logged-out users to view the homepage

Summary: Fixes T3979. The content isn't necessarily very good yet (see T4103, T3583), but this makes it work (e.g., not be a login screen).

Test Plan: Loaded home as a logged-out user on a public install, saw home instead of login.

Reviewers: chad, btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T3979

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

+4
+4
src/applications/home/controller/PhabricatorHomeMainController.php
··· 6 6 private $filter; 7 7 private $minipanels = array(); 8 8 9 + public function shouldAllowPublic() { 10 + return true; 11 + } 12 + 9 13 public function willProcessRequest(array $data) { 10 14 $this->filter = idx($data, 'filter'); 11 15 }