You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the User object was not being recorded for request events. Is anyone else running into this? Previously it seemed to be isolated to requests using token authentication (knox-rest-auth) now I'm seeing it for django-allauth authentication schemes as well (running v1.3.3)
The text was updated successfully, but these errors were encountered:
What is the rationale for getting the user from the session cookie instead of request.user?
I think it's because the request is unavailable in the signal handling. See #225.
I agree that easy audit should use request.user instead of re-parsing the cookie. Django already handles this (in one of the middlewares I believe). There is also a related discussion in #165.
I noticed that the User object was not being recorded for request events. Is anyone else running into this? Previously it seemed to be isolated to requests using token authentication (knox-rest-auth) now I'm seeing it for django-allauth authentication schemes as well (running v1.3.3)
The text was updated successfully, but these errors were encountered: