skip to Main Content

Redis – Django WebSocket DISCONNECT /ws/chat/lobby/ [127.0.0.1:3022]

i want to create chat app, i follow the https://channels.readthedocs.io/en/latest/tutorial/part_2.html here, chat/ __init__.py routing.py urls.py settings.py wsgi.py i added this code to my routing.py from channels.auth import AuthMiddlewareStack from channels.routing import ProtocolTypeRouter, URLRouter import chat.routing application = ProtocolTypeRouter({ # (http->django…

VIEW QUESTION

Django REST framework reset password confirmation not working

I am building a user authentication backend with djano using rest_auth and allauth. This is my api app's urls.py urlpatterns = [ path('rest-auth/', include('rest_auth.urls')), path('rest-auth/registration/', include('rest_auth.registration.urls')), path("account/", include('allauth.urls')), ] after running server, I am going to rest-auth/password/reset, type in the…

VIEW QUESTION
Back To Top
Search