Skip to content

Instantly share code, notes, and snippets.

@julianwachholz
Created May 25, 2013 16:30
Show Gist options
  • Save julianwachholz/5649656 to your computer and use it in GitHub Desktop.
Save julianwachholz/5649656 to your computer and use it in GitHub Desktop.
def has_verified_email(self):
try:
verification = self.emailverification
except EmailVerification.DoesNotExist:
return True
return verification.is_verified()
has_verified_email.boolean = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment