mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2025-06-28 16:25:44 +08:00
Added websocket endpoint for student statuses
This commit is contained in:
parent
fcd941a80f
commit
4b20812021
5 changed files with 74 additions and 2 deletions
|
@ -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))]
|
||||
)
|
||||
),
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue