mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 08:12:40 +01:00
86fe020a97
Summary: No editing or view yet, just adds the schema and a policy default. Part of D7391. Test Plan: `bin/storage upgrade` Reviewers: hach-que, btrahan Reviewed By: hach-que CC: aran Maniphest Tasks: T2230 Differential Revision: https://secure.phabricator.com/D7415
16 lines
298 B
PHP
16 lines
298 B
PHP
<?php
|
|
|
|
final class DiffusionCapabilityDefaultPush
|
|
extends PhabricatorPolicyCapability {
|
|
|
|
const CAPABILITY = 'diffusion.default.push';
|
|
|
|
public function getCapabilityKey() {
|
|
return self::CAPABILITY;
|
|
}
|
|
|
|
public function getCapabilityName() {
|
|
return pht('Default Push Policy');
|
|
}
|
|
|
|
}
|