I have a DRF API that uses dj_rest_auth with JWT tokens and a React frontend. The project is configured to send the refresh token as an HTTP only cookie.
When a user registers they have to validate their email. Ideally I would like the verify email endpoint provided by dj_rest_auth to set the refresh token cookie, so the user is logged in.
I found a configuration option called: LOGIN_ON_EMAIL_CONFIRMATION
but it doesn't seem to do what I need it to do. Perhaps it affects the default confirmation template which I am not using.