mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
21 lines
419 B
PHP
21 lines
419 B
PHP
|
<?php
|
||
|
|
||
|
final class ManiphestCapabilityEditStatus
|
||
|
extends PhabricatorPolicyCapability {
|
||
|
|
||
|
const CAPABILITY = 'maniphest.edit.status';
|
||
|
|
||
|
public function getCapabilityKey() {
|
||
|
return self::CAPABILITY;
|
||
|
}
|
||
|
|
||
|
public function getCapabilityName() {
|
||
|
return pht('Can Edit Task Status');
|
||
|
}
|
||
|
|
||
|
public function describeCapabilityRejection() {
|
||
|
return pht('You do not have permission to edit task status.');
|
||
|
}
|
||
|
|
||
|
}
|