From f4be162b7f76ddf8ff6c22387e8e08f73d10b24d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=8B=AC=EC=9E=AC=EC=97=BD?= <jysim0326@ajou.ac.kr>
Date: Mon, 9 Dec 2024 23:26:43 +0900
Subject: [PATCH] =?UTF-8?q?refactor:=20=ED=91=B8=EC=8B=9C=20=EC=95=8C?=
 =?UTF-8?q?=EB=A6=BC=20=ED=81=B4=EB=A6=AD=EC=8B=9C=20=EA=B2=BD=EB=A1=9C=20?=
 =?UTF-8?q?=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 pushServer.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pushServer.js b/pushServer.js
index 76d593d..b57e92d 100644
--- a/pushServer.js
+++ b/pushServer.js
@@ -42,7 +42,7 @@ async function startPushServer() {
               body: `${sender}: ${messageContent}`,
             },
             data: {
-              click_action: `http://localhost:3000/chat/chatRoom/${chatRoomId}`, // �대┃ �� �대룞�� URL
+              click_action: `${process.env.FRONT_URL}/chat/chatRoom/${chatRoomId}`, // �대┃ �� �대룞�� URL
             },
             android: { priority: 'high' },
             apns: { payload: { aps: { sound: 'default' } } },
@@ -84,7 +84,7 @@ async function startPushServer() {
             body: `${inviterName}�섏씠 ${meetingTitle} 紐⑥엫�� 珥덈��덉뒿�덈떎.`,
           },
           data: {
-            click_action: `http://localhost:3000`, // �대┃ �� �대룞�� URL
+            click_action: `${process.env.FRONT_URL}/meeting`, // �대┃ �� �대룞�� URL
           },
           android: { priority: 'high' },
           apns: { payload: { aps: { sound: 'default' } } },
-- 
GitLab