mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
51fead17cf
Summary: Ref T8726. No surprises. Test Plan: Created rules using both action variants, applied upgrade, saw rules still work correctly. {F658842} Reviewers: btrahan Reviewed By: btrahan Subscribers: joshuaspence, epriestley Maniphest Tasks: T8726 Differential Revision: https://secure.phabricator.com/D13701
29 lines
749 B
PHP
29 lines
749 B
PHP
<?php
|
|
|
|
final class PhabricatorSubscriptionsAddSelfHeraldAction
|
|
extends PhabricatorSubscriptionsHeraldAction {
|
|
|
|
const ACTIONCONST = 'subscribers.self.add';
|
|
|
|
public function getHeraldActionName() {
|
|
return pht('Add me as a subscriber');
|
|
}
|
|
|
|
public function supportsRuleType($rule_type) {
|
|
return ($rule_type == HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
|
|
}
|
|
|
|
public function applyEffect($object, HeraldEffect $effect) {
|
|
$phid = $effect->getRule()->getAuthorPHID();
|
|
return $this->applySubscribe(array($phid), $is_add = true);
|
|
}
|
|
|
|
public function getHeraldActionStandardType() {
|
|
return self::STANDARD_NONE;
|
|
}
|
|
|
|
public function renderActionDescription($value) {
|
|
return pht('Add rule author as subscriber.');
|
|
}
|
|
|
|
}
|