summaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorJack Morgan <jack.morgan@intel.com>2017-12-14 01:18:58 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-12-14 01:18:58 +0000
commit299e09f20562b918dc2c2e78cb082fe970f4e392 (patch)
treed9587ad6c7b55d77174589b2cd20220dc3a9eb41 /dashboard
parentd962c79fa747f07e5b55bc13aa73698b0df7d26f (diff)
parent9f525b60709481427761c604a943f17dd5968e38 (diff)
Merge "Integrate Initial Email Support"
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/src/account/forms.py2
-rw-r--r--dashboard/src/account/models.py1
-rw-r--r--dashboard/src/account/views.py2
3 files changed, 4 insertions, 1 deletions
diff --git a/dashboard/src/account/forms.py b/dashboard/src/account/forms.py
index 7653e2b..3b9c627 100644
--- a/dashboard/src/account/forms.py
+++ b/dashboard/src/account/forms.py
@@ -17,6 +17,6 @@ from account.models import UserProfile
class AccountSettingsForm(forms.ModelForm):
class Meta:
model = UserProfile
- fields = ['company', 'ssh_public_key', 'pgp_public_key', 'timezone']
+ fields = ['company', 'email_addr', 'ssh_public_key', 'pgp_public_key', 'timezone']
timezone = forms.ChoiceField(choices=[(x, x) for x in pytz.common_timezones], initial='UTC')
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)
diff --git a/dashboard/src/account/views.py b/dashboard/src/account/views.py
index 17fbdc3..e6a0e5d 100644
--- a/dashboard/src/account/views.py
+++ b/dashboard/src/account/views.py
@@ -119,6 +119,7 @@ class JiraAuthenticatedView(RedirectView):
jira = JIRA(server=settings.JIRA_URL, oauth=oauth_dict)
username = jira.current_user()
+ email = jira.user(username).emailAddress
url = '/'
# Step 3. Lookup the user or create them if they don't exist.
try:
@@ -130,6 +131,7 @@ class JiraAuthenticatedView(RedirectView):
profile = UserProfile()
profile.user = user
profile.save()
+ user.userprofile.email_addr = email
url = reverse('account:settings')
user.userprofile.oauth_token = access_token['oauth_token']
user.userprofile.oauth_secret = access_token['oauth_token_secret']