mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-11 01:41:05 +00:00
31 lines
762 B
Python
31 lines
762 B
Python
|
import random
|
||
|
|
||
|
from django.db import models
|
||
|
|
||
|
|
||
|
class Invite(models.Model):
|
||
|
"""
|
||
|
An invite token, good for one signup.
|
||
|
"""
|
||
|
|
||
|
# Should always be lowercase
|
||
|
token = models.CharField(max_length=500, unique=True)
|
||
|
|
||
|
# Is it limited to a specific email?
|
||
|
email = models.EmailField(null=True, blank=True)
|
||
|
|
||
|
# Admin note about this code
|
||
|
note = models.TextField(null=True, blank=True)
|
||
|
|
||
|
created = models.DateTimeField(auto_now_add=True)
|
||
|
updated = models.DateTimeField(auto_now=True)
|
||
|
|
||
|
@classmethod
|
||
|
def create_random(cls, email=None):
|
||
|
return cls.objects.create(
|
||
|
token="".join(
|
||
|
random.choice("abcdefghkmnpqrstuvwxyz23456789") for i in range(20)
|
||
|
),
|
||
|
email=email,
|
||
|
)
|