From 99d6c2550106aaca0ec20593bbc4d4c156fd67f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Sat, 17 Aug 2024 00:43:04 +0200 Subject: [PATCH] feat: update notification title --- src/Notifier/DomainUpdateNotification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Notifier/DomainUpdateNotification.php b/src/Notifier/DomainUpdateNotification.php index 2f37123..d4c58c5 100644 --- a/src/Notifier/DomainUpdateNotification.php +++ b/src/Notifier/DomainUpdateNotification.php @@ -27,7 +27,7 @@ class DomainUpdateNotification extends Notification implements ChatNotificationI { $ldhName = $this->domainEvent->getDomain()->getLdhName(); $action = $this->domainEvent->getAction(); - $this->subject("Success: Domain Updated $ldhName") + $this->subject("Domain changed $ldhName ($action)") ->content("Domain name $ldhName information has been updated ($action).") ->importance(Notification::IMPORTANCE_HIGH);