8ee9fb1742
The routing is desided by protocol
16 lines
390 B
Python
16 lines
390 B
Python
from channels.routing import ProtocolTypeRouter, URLRouter
|
|
from django.conf.urls import url
|
|
|
|
from openslides.utils.consumers import SiteConsumer
|
|
from openslides.utils.middleware import AuthMiddlewareStack
|
|
|
|
|
|
application = ProtocolTypeRouter({
|
|
# WebSocket chat handler
|
|
"websocket": AuthMiddlewareStack(
|
|
URLRouter([
|
|
url(r"^ws/$", SiteConsumer),
|
|
])
|
|
)
|
|
})
|