mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
17 lines
357 B
PHP
17 lines
357 B
PHP
|
<?php
|
||
|
|
||
|
final class AlmanacCreateNamespacesCapability
|
||
|
extends PhabricatorPolicyCapability {
|
||
|
|
||
|
const CAPABILITY = 'almanac.namespaces';
|
||
|
|
||
|
public function getCapabilityName() {
|
||
|
return pht('Can Create Namespaces');
|
||
|
}
|
||
|
|
||
|
public function describeCapabilityRejection() {
|
||
|
return pht('You do not have permission to create Almanac namespaces.');
|
||
|
}
|
||
|
|
||
|
}
|