aboutsummaryrefslogtreecommitdiff
path: root/app/dispatchAuth/models.py
diff options
context:
space:
mode:
authorMitch Riedstra <Mitch@riedstra.us>2017-11-06 17:43:33 -0500
committerMitch Riedstra <Mitch@riedstra.us>2017-11-06 17:43:33 -0500
commit62f8c5e35949e41ecf777c36736bae1caa007179 (patch)
tree7c5ae9efb327d1eda46bf4da05ed239c2041cbc4 /app/dispatchAuth/models.py
parentf5c84efd37085695732803b28d4a74cc05042e0e (diff)
downloaddispatch-tracker-62f8c5e35949e41ecf777c36736bae1caa007179.tar.gz
dispatch-tracker-62f8c5e35949e41ecf777c36736bae1caa007179.tar.xz
Update the driver Detail page. Still need to fix the Identity Create function
Diffstat (limited to 'app/dispatchAuth/models.py')
-rw-r--r--app/dispatchAuth/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/dispatchAuth/models.py b/app/dispatchAuth/models.py
index 6c90dd0..49e0a41 100644
--- a/app/dispatchAuth/models.py
+++ b/app/dispatchAuth/models.py
@@ -1,4 +1,5 @@
from django.contrib.auth.models import AbstractUser, AbstractBaseUser, PermissionsMixin, BaseUserManager
+from django.core.urlresolvers import reverse
from django.db import models
# Create your models here.
@@ -40,6 +41,7 @@ class UserManager(BaseUserManager):
class User(PermissionsMixin, AbstractBaseUser):
+ id = models.AutoField(primary_key=True)
email = models.EmailField(max_length=256, unique=True)
first_name = models.CharField(max_length=256)
last_name = models.CharField(max_length=256)