mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-10 13:58:34 +01:00
16 lines
294 B
PHP
16 lines
294 B
PHP
|
<?php
|
||
|
|
||
|
final class DivinerDefaultViewCapability extends PhabricatorPolicyCapability {
|
||
|
|
||
|
const CAPABILITY = 'diviner.default.view';
|
||
|
|
||
|
public function getCapabilityName() {
|
||
|
return pht('Default View Policy');
|
||
|
}
|
||
|
|
||
|
public function shouldAllowPublicPolicySetting() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|