@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 countdowns to be viewed by logged out users

Summary: Fixes T5093. Ref T4830.

Test Plan:
- As a logged out user, viewed a public countdown detail page.
- (Tried to view a nonpublic one, got asked to login.)

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T4830, T5093

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

+4 -4
+4 -4
src/applications/countdown/controller/PhabricatorCountdownViewController.php
··· 1 1 <?php 2 2 3 - /** 4 - * @group countdown 5 - */ 6 3 final class PhabricatorCountdownViewController 7 4 extends PhabricatorCountdownController { 8 5 9 6 private $id; 10 7 8 + public function shouldAllowPublic() { 9 + return true; 10 + } 11 + 11 12 public function willProcessRequest(array $data) { 12 13 $this->id = $data['id']; 13 14 } 14 - 15 15 16 16 public function processRequest() { 17 17