diff --git a/Civi/Api4/SepaMandate.php b/Civi/Api4/SepaMandate.php index e3708e40..8f483fe0 100644 --- a/Civi/Api4/SepaMandate.php +++ b/Civi/Api4/SepaMandate.php @@ -9,5 +9,16 @@ * @package Civi\Api4 */ class SepaMandate extends Generic\DAOEntity { - + + /** + * @see \Civi\Api4\Generic\AbstractEntity::permissions() + * @return array[] + */ + public static function permissions(): array { + return [ + 'get' => ['view sepa mandates'], + 'update' => ['edit sepa mandates'], + ]; + } + }