@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 on Ponder Questions, History pages

Summary: Ref T9234, these should allow being publicly visible

Test Plan: log out, see page

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9234

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

+12
+4
src/applications/ponder/controller/PonderAnswerHistoryController.php
··· 2 2 3 3 final class PonderAnswerHistoryController extends PonderController { 4 4 5 + public function shouldAllowPublic() { 6 + return true; 7 + } 8 + 5 9 public function handleRequest(AphrontRequest $request) { 6 10 $viewer = $request->getViewer(); 7 11 $id = $request->getURIData('id');
+4
src/applications/ponder/controller/PonderQuestionHistoryController.php
··· 2 2 3 3 final class PonderQuestionHistoryController extends PonderController { 4 4 5 + public function shouldAllowPublic() { 6 + return true; 7 + } 8 + 5 9 public function handleRequest(AphrontRequest $request) { 6 10 $viewer = $request->getViewer(); 7 11 $id = $request->getURIData('id');
+4
src/applications/ponder/controller/PonderQuestionViewController.php
··· 2 2 3 3 final class PonderQuestionViewController extends PonderController { 4 4 5 + public function shouldAllowPublic() { 6 + return true; 7 + } 8 + 5 9 public function handleRequest(AphrontRequest $request) { 6 10 $viewer = $request->getViewer(); 7 11 $id = $request->getURIData('id');