PedroBern / django-graphql-auth

Django registration and authentication with GraphQL.
https://django-graphql-auth.readthedocs.io/en/latest/
MIT License
329 stars 106 forks source link

How to specify a custom domain for email verification link #58

Closed abdellatifLabr closed 4 years ago

abdellatifLabr commented 4 years ago

This is a question on how to specify a custom domain for email verification link. like in django settings we put: DOMAIN = 'localhost:4200'

so I want to verify from the frontend.

maxpeterson commented 4 years ago

If you are referring to the email sent from the app then I think it uses the Django sites framework, so you should be able to update the site domain in the django admin. You may need to restart your django server after changing the site object as it is cached.

abdellatifLabr commented 4 years ago

@maxpeterson Thank you!, You solved my problem