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
{{ message }}
This repository has been archived by the owner on May 26, 2020. It is now read-only.
for some reason i want to use "request" in AUTHENTICATION_BACKENDS
but i got request as None
i need request because:
no request no user
just change you serializers line 50
from
user = authenticate(**credentials)
to
user = authenticate(self.context["request"] , **credentials)
thanks
The text was updated successfully, but these errors were encountered: