From 6ddf837394fc8df7c3728e1f938563bcf67a7d84 Mon Sep 17 00:00:00 2001 From: Youngbin Han Date: Sat, 27 Jul 2024 02:25:32 +0900 Subject: [PATCH] Update views.py --- kiosksvc/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiosksvc/views.py b/kiosksvc/views.py index f429bb9..f56356b 100644 --- a/kiosksvc/views.py +++ b/kiosksvc/views.py @@ -26,7 +26,7 @@ class CallStaffView(APIView): authentication_classes = [authentication.TokenAuthentication] def get(self, request): webhook_payload = { - "text": "누군가가 리셉션 키오스크로 관계자를 호출 했습니다." + "text": "@everyone 누군가가 리셉션 키오스크로 관계자를 호출 했습니다." } requests.post(organizer_webhook_url, json=webhook_payload) return JsonResponse({ @@ -87,4 +87,4 @@ def post(self, request, format=None): send_checkin_confirm.delay(participantId) return JsonResponse({ "result":"Participant successfully checked in" - }, status=200) \ No newline at end of file + }, status=200)