Updated User model
This commit is contained in:
parent
1f81e5a6f6
commit
a8fbd82b0a
@ -70,10 +70,11 @@ class Show(TimestampedModel):
|
||||
)
|
||||
|
||||
class User(TimestampedModel):
|
||||
auth_token=models.CharField(
|
||||
max_length=16,
|
||||
help_text="User's authentication token from IcyNet's auth system",
|
||||
verbose_name="IcyNet Auth Token"
|
||||
user_id = models.IntField(
|
||||
help_text='The user id assigned to this user by IcyNet\'s auth servers'
|
||||
)
|
||||
email = models.EmailField(
|
||||
help_text='This user\'s email address'
|
||||
)
|
||||
display_name=models.CharField(
|
||||
max_length=20,
|
||||
|
Reference in New Issue
Block a user