From a3b49053c01b07735ed888192b4876021583d8e6 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Mon, 28 Sep 2015 07:55:28 -0700 Subject: [PATCH] Allow polls to be public Summary: Fixes T9474 Test Plan: Make a poll, log out, still see it. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T9474 Differential Revision: https://secure.phabricator.com/D14179 --- .../slowvote/controller/PhabricatorSlowvotePollController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/applications/slowvote/controller/PhabricatorSlowvotePollController.php b/src/applications/slowvote/controller/PhabricatorSlowvotePollController.php index 40980e5f41..97a6a1f84f 100644 --- a/src/applications/slowvote/controller/PhabricatorSlowvotePollController.php +++ b/src/applications/slowvote/controller/PhabricatorSlowvotePollController.php @@ -3,6 +3,10 @@ final class PhabricatorSlowvotePollController extends PhabricatorSlowvoteController { + public function shouldAllowPublic() { + return true; + } + public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id');