From 0ceb09d410bee43c35993dd662897fe21df360b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Sun, 8 Sep 2024 16:42:02 +0200 Subject: [PATCH] feat: add more important status MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maƫl Gangloff --- src/Service/RDAPService.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/Service/RDAPService.php b/src/Service/RDAPService.php index 2d76b6d..0ec52f6 100644 --- a/src/Service/RDAPService.php +++ b/src/Service/RDAPService.php @@ -75,7 +75,19 @@ ]; private const IMPORTANT_EVENTS = [EventAction::Deletion->value, EventAction::Expiration->value]; - private const IMPORTANT_STATUS = ['auto renew period', 'redemption period', 'pending delete', 'client hold']; + private const IMPORTANT_STATUS = [ + 'auto renew period', + 'redemption period', + 'pending delete', + 'pending create', + 'pending renew', + 'pending restore', + 'pending transfer', + 'pending update', + 'client hold', + 'server hold', + 'add period' + ]; public function __construct(private HttpClientInterface $client, private EntityRepository $entityRepository,