mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
17 lines
320 B
PHP
17 lines
320 B
PHP
|
<?php
|
||
|
|
||
|
final class PonderQuestionDefaultViewCapability
|
||
|
extends PhabricatorPolicyCapability {
|
||
|
|
||
|
const CAPABILITY = 'ponder.question.default.view';
|
||
|
|
||
|
public function getCapabilityName() {
|
||
|
return pht('Default Question View Policy');
|
||
|
}
|
||
|
|
||
|
public function shouldAllowPublicPolicySetting() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|