1👍
✅
A Django backend needs to either return a User object (or equivalent which would have get_absolute_url
), or it needs to return None
(here’s an example). Your authentication library should not be re-directing, that’s your view
s’ job.
Source:stackexchange.com