@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<?php
2
3final class HarbormasterBuildPlanDefaultViewCapability
4 extends PhabricatorPolicyCapability {
5
6 // TODO: This is misspelled! See T13005.
7 const CAPABILITY = 'harbomaster.plan.default.view';
8
9 public function getCapabilityName() {
10 return pht('Default Build Plan View Policy');
11 }
12
13 public function shouldAllowPublicPolicySetting() {
14 return true;
15 }
16
17}