mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 11:42:42 +01:00
5f76c71d78
Ref T8726. This shares some target filtering code with the base class.
32 lines
865 B
PHP
32 lines
865 B
PHP
<?php
|
|
|
|
final class DifferentialReviewersAddBlockingReviewersHeraldAction
|
|
extends DifferentialReviewersHeraldAction {
|
|
|
|
const ACTIONCONST = 'differential.reviewers.blocking';
|
|
|
|
public function getHeraldActionName() {
|
|
return pht('Add blocking reviewers');
|
|
}
|
|
|
|
public function supportsRuleType($rule_type) {
|
|
return ($rule_type != HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
|
|
}
|
|
|
|
public function applyEffect($object, HeraldEffect $effect) {
|
|
return $this->applyReviewers($effect->getTarget(), $is_blocking = true);
|
|
}
|
|
|
|
public function getHeraldActionStandardType() {
|
|
return self::STANDARD_PHID_LIST;
|
|
}
|
|
|
|
protected function getDatasource() {
|
|
return new PhabricatorMetaMTAMailableDatasource();
|
|
}
|
|
|
|
public function renderActionDescription($value) {
|
|
return pht('Add blocking reviewers: %s.', $this->renderHandleList($value));
|
|
}
|
|
|
|
}
|