mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-02 02:40:58 +01:00
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
This commit is contained in:
parent
6fdbc406b7
commit
756792caf5
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@ final class PhabricatorHomeMainController
|
|||
private $filter;
|
||||
private $minipanels = array();
|
||||
|
||||
public function shouldAllowPublic() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function willProcessRequest(array $data) {
|
||||
$this->filter = idx($data, 'filter');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue