Skip to content
Snippets Groups Projects
Commit f47df260 authored by Jamie Forth's avatar Jamie Forth
Browse files

Merge branch 'master' of gitlab.doc.gold.ac.uk:mmcc/mmcc-server

parents 25433a4a ce8f6796
Branches master
No related merge requests found
......@@ -22,6 +22,7 @@ django-cors-headers = "*"
django-user-sessions = "*"
django-restql = "*"
channels-redis = "*"
'Twisted[tls,http2]' = "*"
[requires]
python_version = "3.11"
......@@ -3,7 +3,7 @@ from django.urls import path
from . import consumers
websocket_urlpatterns = [
path('api/ws/echo', consumers.Echo),
path('api/ws/echoauth', consumers.EchoAuth),
path('api/ws/mmcc', consumers.Mmcc),
path('api/ws/echo', consumers.Echo.as_asgi()),
path('api/ws/echoauth', consumers.EchoAuth.as_asgi()),
path('api/ws/mmcc', consumers.Mmcc.as_asgi()),
]
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment