diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2017-12-06 16:48:31 -0500 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2017-12-07 15:14:01 -0500 |
commit | 9f525b60709481427761c604a943f17dd5968e38 (patch) | |
tree | b07d35705a54dfa7c23455fbbf16fee883895cff /dashboard/src/account/models.py | |
parent | cde5479d94eb3ca175df8b8e3d1f7dec8b7bbda4 (diff) |
Integrate Initial Email Support
JIRA: None
Integrate ability for users to change email presented to admins
with field initially filled with user's Jira associated email address
This amend takes into account a streamlining change
suggested by Parker Berbarian
Change-Id: I677ce669f200e5cad70c198737118f0b7925bac5
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'dashboard/src/account/models.py')
-rw-r--r-- | dashboard/src/account/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard/src/account/models.py b/dashboard/src/account/models.py index c2e9902..bfc0bbe 100644 --- a/dashboard/src/account/models.py +++ b/dashboard/src/account/models.py @@ -20,6 +20,7 @@ class UserProfile(models.Model): timezone = models.CharField(max_length=100, blank=False, default='UTC') ssh_public_key = models.FileField(upload_to=upload_to, null=True, blank=True) pgp_public_key = models.FileField(upload_to=upload_to, null=True, blank=True) + email_addr = models.CharField(max_length=300, blank=false, default='email@mail.com') company = models.CharField(max_length=200, blank=False) oauth_token = models.CharField(max_length=1024, blank=False) |