1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 23:02:42 +01:00

Allow public on list of subscribers

Summary: Fixes T7317, allows public to be set on this list controller.

Test Plan: Tested a list of subscribers on a logged in and logged out Diff.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T7317

Differential Revision: https://secure.phabricator.com/D11801
This commit is contained in:
Chad Little 2015-02-18 11:11:12 -08:00
parent 02b174c2af
commit f9638edf37

View file

@ -9,6 +9,10 @@ final class PhabricatorSubscriptionsListController
$this->phid = idx($data, 'phid');
}
public function shouldAllowPublic() {
return true;
}
public function processRequest() {
$request = $this->getRequest();