mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 08:12:40 +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;
|
||
|
}
|
||
|
|
||
|
}
|