From 11bfc37db7d05954a484a84ccd6f45c5b3042bc7 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Wed, 26 Mar 2025 08:31:11 +0100 Subject: [PATCH] refactor(notifications): update Telegram button URL for staging environment --- app/Notifications/Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/Test.php b/app/Notifications/Test.php index 2a0581bbf..0b1d8d6b1 100644 --- a/app/Notifications/Test.php +++ b/app/Notifications/Test.php @@ -83,7 +83,7 @@ class Test extends Notification implements ShouldQueue 'buttons' => [ [ 'text' => 'Go to your dashboard', - 'url' => base_url(), + 'url' => isDev() ? 'https://staging-but-dev.coolify.io' : base_url(), ], ], ];