1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-04 12:42:43 +01:00
phorge-phorge/src/applications/spaces/capability/PhabricatorSpacesCapabilityCreateSpaces.php
epriestley 541b4c86b4 Add "Spaces", an application for managing policy namespaces
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
2015-06-01 11:28:38 -07:00

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.');
}
}