mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
b4d7a9de39
Summary: Instead of implementing the `getCapabilityKey` method in all subclasses of `PhabricatorPolicyCapability`, provide a `final` implementation in the base class which uses reflection. See D9837 and D9985 for similar implementations. Test Plan: N/A Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D10039
16 lines
359 B
PHP
16 lines
359 B
PHP
<?php
|
|
|
|
final class DiffusionCreateRepositoriesCapability
|
|
extends PhabricatorPolicyCapability {
|
|
|
|
const CAPABILITY = 'diffusion.create';
|
|
|
|
public function getCapabilityName() {
|
|
return pht('Can Create Repositories');
|
|
}
|
|
|
|
public function describeCapabilityRejection() {
|
|
return pht('You do not have permission to create new repositories.');
|
|
}
|
|
|
|
}
|