mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
16 lines
295 B
PHP
16 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
final class ProjectDefaultViewCapability
|
||
|
extends PhabricatorPolicyCapability {
|
||
|
|
||
|
const CAPABILITY = 'project.default.view';
|
||
|
|
||
|
public function getCapabilityName() {
|
||
|
return pht('Default View Policy');
|
||
|
}
|
||
|
|
||
|
public function shouldAllowPublicPolicySetting() {
|
||
|
return true;
|
||
|
}
|
||
|
}
|