We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you're develop a backend and frontend in separate projects, cannot add ACTIVATION_URL in DJOSER settings like this
ACTIVATION_URL
DJOSER = { "SEND_ACTIVATION_EMAIL": True, "SEND_CONFIRMATION_EMAIL": True, "USER_CREATE_PASSWORD_RETYPE": True, # specially this "ACTIVATION_URL": os.environ.get( "DJANGO_ACTIVATION_URL", "auth/users/activate/{uid}/{token}" ), }
because implicitly check inside the backend this path from example localhost:8000, and maybe the frontend project is in another repo and another host
localhost:8000
From documentation:
This PR #729 by @n-borges allows this functionality Please check this out ❤️
The text was updated successfully, but these errors were encountered:
For anyone trying to get this result take a look at this stackoverflow question
Adding DOMAIN and SITE_NAME solves it.
DOMAIN
SITE_NAME
Sorry, something went wrong.
Great, I use it to solve it
Sorry it took so long, merged. I will release it within a month with other minor improvements. Thanks!
No branches or pull requests
If you're develop a backend and frontend in separate projects, cannot add
ACTIVATION_URL
in DJOSER settings like thisbecause implicitly check inside the backend this path from example
localhost:8000
, and maybe the frontend project is in another repo and another hostFrom documentation:
This PR #729 by @n-borges allows this functionality
Please check this out ❤️
The text was updated successfully, but these errors were encountered: