@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.

Publish books with the most-open policy

Summary: Ref T4558. When publishing a new Diviner book, use the most-open policy instead of `PhabricatorPolicies::POLICY_USER`.

Test Plan: Ran `diviner generate` in a directory which didn't have published Diviner documentation.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T4558

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

+1 -1
+1 -1
src/applications/diviner/publisher/DivinerLivePublisher.php
··· 12 12 if (!$book) { 13 13 $book = id(new DivinerLiveBook()) 14 14 ->setName($book_name) 15 - ->setViewPolicy(PhabricatorPolicies::POLICY_USER) 15 + ->setViewPolicy(PhabricatorPolicies::getMostOpenPolicy()) 16 16 ->save(); 17 17 } 18 18