Created
January 4, 2017 16:39
-
-
Save ddahan/c087975c5e3e0cd9fef305d364c1e537 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def email_verification(request, token): | |
# On vérifie la validité du token et raise une erreur si invalide | |
u = User.get_user_from_token(str_token=token) | |
# ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment