Added websocket endpoint for student statuses

This commit is contained in:
Keannu Christian Bernasol 2023-07-01 15:47:28 +08:00
parent fcd941a80f
commit 4b20812021
5 changed files with 74 additions and 2 deletions

View file

@ -1,7 +1,10 @@
import os
from channels.routing import ProtocolTypeRouter
from channels.routing import ProtocolTypeRouter, URLRouter
from channels.auth import AuthMiddlewareStack
from django.core.asgi import get_asgi_application
import api.routing
from django.urls import re_path
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
# Initialize Django ASGI application early to ensure the AppRegistry
@ -11,4 +14,9 @@ django_asgi_app = get_asgi_application()
application = ProtocolTypeRouter({
"http": django_asgi_app,
# Just HTTP for now. (We can add other protocols later.)
'websocket': AuthMiddlewareStack(
URLRouter(
[re_path(r'ws/', URLRouter(api.routing.websocket_urlpatterns))]
)
),
})