summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/account/models.py
diff options
context:
space:
mode:
authormaxbr <maxbr@mi.fu-berlin.de>2016-08-19 17:15:28 +0200
committermaxbr <maxbr@mi.fu-berlin.de>2016-08-19 17:15:28 +0200
commit114a6fb65e14f15487bc8db33cedae011fc42cac (patch)
treeb0e2db7a0876ade38e7780468b367a30b48b6036 /pharos-dashboard/account/models.py
parent217e6dd3c193b5f576ade7581775993c8ed82294 (diff)
Use Jira Oauth for user authentication
JIRA: RELENG-12 Users can use their jira accounts for the dashboard. This also allows the dasboard to open jira tickets for bookings. Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'pharos-dashboard/account/models.py')
-rw-r--r--pharos-dashboard/account/models.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pharos-dashboard/account/models.py b/pharos-dashboard/account/models.py
index 5181c71..fbabf6c 100644
--- a/pharos-dashboard/account/models.py
+++ b/pharos-dashboard/account/models.py
@@ -8,9 +8,11 @@ from dashboard.models import Resource
class UserProfile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
timezone = models.CharField(max_length=100, blank=False, default='UTC')
- sshkey = models.CharField(max_length=2048, blank=False)
- pgpkey = models.CharField(max_length=2048, blank=False)
+ ssh_public_key = models.CharField(max_length=2048, blank=False)
+ pgp_public_key = models.CharField(max_length=2048, blank=False)
company = models.CharField(max_length=200, blank=False)
+ oauth_token = models.CharField(max_length=1024, blank=False)
+ oauth_secret = models.CharField(max_length=1024, blank=False)
class Meta:
db_table = 'user_profile'