SSE
This commit is contained in:
parent
533301e520
commit
d1ac7586f7
16
posts/routing.py
Normal file
16
posts/routing.py
Normal file
@ -0,0 +1,16 @@
|
||||
import django_eventstream
|
||||
from channels.auth import AuthMiddlewareStack
|
||||
from channels.http import AsgiHandler
|
||||
from channels.routing import URLRouter, ProtocolTypeRouter
|
||||
from django.urls import re_path
|
||||
|
||||
urlpatterns = [
|
||||
re_path(r'^events/',
|
||||
AuthMiddlewareStack(URLRouter(django_eventstream.routing.urlpatterns)),
|
||||
{'channels':['notice']}),
|
||||
re_path(r'',AsgiHandler)
|
||||
]
|
||||
|
||||
application = ProtocolTypeRouter({
|
||||
'http': URLRouter(urlpatterns)
|
||||
})
|
Loading…
x
Reference in New Issue
Block a user