1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-06 04:41:01 +01:00
phorge-phorge/src/applications/harbormaster/capability/HarbormasterBuildPlanDefaultViewCapability.php
Dmitri Iouchtchenko 5897294fa9 Add spelling TODOs
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
2017-10-09 11:56:53 -07:00

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;
}
}