Commit 5792f7ebad6165b5dc979277afec6a7fa5eadd44
1 parent
1588488d
Exists in
master
and in
39 other branches
Adding custom user
Showing
2 changed files
with
19 additions
and
1 deletions
Show diff stats
src/accounts/models.py
| 1 | + | |
| 1 | 2 | from django.db import models |
| 3 | +from django.contrib.auth.models import AbstractUser | |
| 4 | + | |
| 5 | + | |
| 6 | +class User(AbstractUser): | |
| 7 | + institution = models.CharField(max_length=128, null=True) | |
| 8 | + role = models.CharField(max_length=128, null=True) | |
| 9 | + twitter = models.CharField(max_length=128, null=True) | |
| 10 | + facebook = models.CharField(max_length=128, null=True) | |
| 11 | + google_talk = models.EmailField(null=True) | |
| 12 | + webpage = models.CharField(max_length=256, null=True) | |
| 13 | + verification_hash = models.CharField(max_length=32, null=True) | |
| 2 | 14 | |
| 3 | -# Create your models here. | |
| 15 | +# We need to have `email` field set as unique but Django does not | |
| 16 | +# support field overriding (at least not until 1.6). | |
| 17 | +# The following workaroud allows to change email field to unique | |
| 18 | +# without having to rewrite all AbstractUser here | |
| 19 | +User._meta.get_field('email')._unique = True | ... | ... |
src/colab/custom_settings.py