From e70b98791a2e41295b6e5b4fe7ca6937a73ab62c Mon Sep 17 00:00:00 2001 From: dangnak2 <80161984+dangnak2@users.noreply.github.com> Date: Sun, 3 Dec 2023 16:12:29 +0900 Subject: [PATCH] =?UTF-8?q?[PDS-56]=20feat:=20firebase=20API=20URL=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../notification/service/PushNotificationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/example/pladialmserver/notification/service/PushNotificationService.java b/src/main/java/com/example/pladialmserver/notification/service/PushNotificationService.java index 88660ded..5b18209b 100644 --- a/src/main/java/com/example/pladialmserver/notification/service/PushNotificationService.java +++ b/src/main/java/com/example/pladialmserver/notification/service/PushNotificationService.java @@ -33,7 +33,7 @@ @RequiredArgsConstructor @Transactional(readOnly = true) public class PushNotificationService { - private final String API_URL = "https://fcm.googleapis.com/v1/projects/pladi-alm-7702202947/messages:send"; + private final String API_URL = "https://fcm.googleapis.com/v1/projects/pladi-alm/messages:send"; private final ObjectMapper objectMapper; private final PushNotificationRepository notificationRepository; private final UserRepository userRepository;