mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-21 11:09:02 +01:00
18 lines
378 B
PHP
18 lines
378 B
PHP
|
<?php
|
||
|
|
||
|
final class AlmanacCreateClusterServicesCapability
|
||
|
extends PhabricatorPolicyCapability {
|
||
|
|
||
|
const CAPABILITY = 'almanac.cluster';
|
||
|
|
||
|
public function getCapabilityName() {
|
||
|
return pht('Can Create Cluster Services');
|
||
|
}
|
||
|
|
||
|
public function describeCapabilityRejection() {
|
||
|
return pht(
|
||
|
'You do not have permission to create Almanac cluster services.');
|
||
|
}
|
||
|
|
||
|
}
|