Skip to content

Commit

Permalink
Update views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sukso96100 authored Jul 26, 2024
1 parent cfa00ea commit 6ddf837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kiosksvc/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -87,4 +87,4 @@ def post(self, request, format=None):
send_checkin_confirm.delay(participantId)
return JsonResponse({
"result":"Participant successfully checked in"
}, status=200)
}, status=200)

0 comments on commit 6ddf837

Please sign in to comment.