From fffaf30dc283e4f3b2d3e38bb42429407d8e9611 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 23 Jun 2022 17:25:23 +0200 Subject: [PATCH] add notification routing into asgi from routing --- app/asgi.py | 6 +----- bin | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/app/asgi.py b/app/asgi.py index fd5bbdc9..d2fc08e4 100644 --- a/app/asgi.py +++ b/app/asgi.py @@ -12,6 +12,7 @@ from teleforma.ws import chat websocket_urlpatterns = [ re_path(r'ws/chat/(?P\w+)/$', chat.ChatConsumer.as_asgi()), + re_path(r'ws/notification/(?P\w+)/$', notification.NotificationConsumer.as_asgi()), ] @@ -23,8 +24,3 @@ application = ProtocolTypeRouter({ ) ), }) - - - - - diff --git a/bin b/bin index 877deb91..52d01bc8 160000 --- a/bin +++ b/bin @@ -1 +1 @@ -Subproject commit 877deb91a9d035c74bf726fed8851d38e93014ce +Subproject commit 52d01bc8d0ec34d96ae3751fa5709a8ae05066fd -- 2.39.5