diff --git a/src/applications/differential/herald/DifferentialReviewersAddBlockingReviewersHeraldAction.php b/src/applications/differential/herald/DifferentialReviewersAddBlockingReviewersHeraldAction.php index 79a00bc940..16d07e5240 100644 --- a/src/applications/differential/herald/DifferentialReviewersAddBlockingReviewersHeraldAction.php +++ b/src/applications/differential/herald/DifferentialReviewersAddBlockingReviewersHeraldAction.php @@ -22,7 +22,7 @@ final class DifferentialReviewersAddBlockingReviewersHeraldAction } protected function getDatasource() { - return new PhabricatorMetaMTAMailableDatasource(); + return new DiffusionAuditorDatasource(); } public function renderActionDescription($value) { diff --git a/src/applications/differential/herald/DifferentialReviewersAddReviewersHeraldAction.php b/src/applications/differential/herald/DifferentialReviewersAddReviewersHeraldAction.php index 45f209385e..d39a4370c5 100644 --- a/src/applications/differential/herald/DifferentialReviewersAddReviewersHeraldAction.php +++ b/src/applications/differential/herald/DifferentialReviewersAddReviewersHeraldAction.php @@ -22,7 +22,7 @@ final class DifferentialReviewersAddReviewersHeraldAction } protected function getDatasource() { - return new PhabricatorMetaMTAMailableDatasource(); + return new DiffusionAuditorDatasource(); } public function renderActionDescription($value) { diff --git a/src/applications/differential/herald/DifferentialReviewersHeraldAction.php b/src/applications/differential/herald/DifferentialReviewersHeraldAction.php index 5293af4311..3e98fdd92f 100644 --- a/src/applications/differential/herald/DifferentialReviewersHeraldAction.php +++ b/src/applications/differential/herald/DifferentialReviewersHeraldAction.php @@ -69,6 +69,7 @@ abstract class DifferentialReviewersHeraldAction $allowed_types = array( PhabricatorPeopleUserPHIDType::TYPECONST, PhabricatorProjectProjectPHIDType::TYPECONST, + PhabricatorOwnersPackagePHIDType::TYPECONST, ); $targets = $this->loadStandardTargets($phids, $allowed_types, $current);