mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-06 04:41:01 +01:00
5897294fa9
Summary: Ref T13005. Added reminders not to copy/paste. Test Plan: None. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13005 Differential Revision: https://secure.phabricator.com/D18695
17 lines
373 B
PHP
17 lines
373 B
PHP
<?php
|
|
|
|
final class HarbormasterBuildPlanDefaultViewCapability
|
|
extends PhabricatorPolicyCapability {
|
|
|
|
// TODO: This is misspelled! See T13005.
|
|
const CAPABILITY = 'harbomaster.plan.default.view';
|
|
|
|
public function getCapabilityName() {
|
|
return pht('Default Build Plan View Policy');
|
|
}
|
|
|
|
public function shouldAllowPublicPolicySetting() {
|
|
return true;
|
|
}
|
|
|
|
}
|