mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 16:52:41 +01:00
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
This commit is contained in:
parent
89336197e3
commit
22dc3c1be2
3 changed files with 12 additions and 0 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
final class PonderAnswerHistoryController extends PonderController {
|
||||
|
||||
public function shouldAllowPublic() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function handleRequest(AphrontRequest $request) {
|
||||
$viewer = $request->getViewer();
|
||||
$id = $request->getURIData('id');
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
final class PonderQuestionHistoryController extends PonderController {
|
||||
|
||||
public function shouldAllowPublic() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function handleRequest(AphrontRequest $request) {
|
||||
$viewer = $request->getViewer();
|
||||
$id = $request->getURIData('id');
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
final class PonderQuestionViewController extends PonderController {
|
||||
|
||||
public function shouldAllowPublic() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function handleRequest(AphrontRequest $request) {
|
||||
$viewer = $request->getViewer();
|
||||
$id = $request->getURIData('id');
|
||||
|
|
Loading…
Reference in a new issue