mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
541b4c86b4
Summary: Ref T3820. This doesn't actually do anything yet, but dumps in all the plumbing. Test Plan: {F156989} {F156990} {F156991} Reviewers: btrahan Reviewed By: btrahan Subscribers: eadler, wienczny, jdloft, devurandom, thz, hwinkel, 20after4, sascha-egerer, seporaitis, joshuaspence, chad, epriestley Maniphest Tasks: T3820 Differential Revision: https://secure.phabricator.com/D9204
16 lines
342 B
PHP
16 lines
342 B
PHP
<?php
|
|
|
|
final class PhabricatorSpacesCapabilityCreateSpaces
|
|
extends PhabricatorPolicyCapability {
|
|
|
|
const CAPABILITY = 'spaces.create';
|
|
|
|
public function getCapabilityName() {
|
|
return pht('Can Create Spaces');
|
|
}
|
|
|
|
public function describeCapabilityRejection() {
|
|
return pht('You do not have permission to create spaces.');
|
|
}
|
|
|
|
}
|