Tests pour le BDS #816

Open
thubrecht wants to merge 40 commits from thubrecht/bds-tests into master
Showing only changes of commit 1ae5c80f76 - Show all commits

View file

@ -1,6 +1,6 @@
from channels.auth import AuthMiddlewareStack
from channels.http import AsgiHandler
from channels.routing import ProtocolTypeRouter, URLRouter
from django.core.asgi import get_asgi_application
from django.urls import path
from kfet.routing import KFRouter
@ -15,6 +15,6 @@ application = ProtocolTypeRouter(
]
)
),
"http": AsgiHandler,
"http": get_asgi_application(),
}
)