Skip to content

Instantly share code, notes, and snippets.

@wldcordeiro
Created February 12, 2015 00:00
Show Gist options
  • Save wldcordeiro/3b204d0cda03475aea23 to your computer and use it in GitHub Desktop.
Save wldcordeiro/3b204d0cda03475aea23 to your computer and use it in GitHub Desktop.
def create_key(cls):
k = get_random_string(64).lower()
while CompanyInvitation.objects.filter(key=k).exists():
k = get_random_string(64).lower()
else:
return k
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment