summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/account/models.py
diff options
context:
space:
mode:
authorJack Morgan <jack.morgan@intel.com>2016-08-22 14:13:52 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-22 14:13:52 +0000
commit1749ab62c28b58b4838cb549614e212896c3e752 (patch)
tree39e06062dcb9b1ff2a2599e25cd1da820c4fc931 /tools/pharos-dashboard/account/models.py
parentc4f071a386659ea408c411fd97de80c97da049fa (diff)
parentebaa05ab2b53634a7a3e738618a031fd1518d796 (diff)
Merge "Use Jira Oauth for user authentication"
Diffstat (limited to 'tools/pharos-dashboard/account/models.py')
-rw-r--r--tools/pharos-dashboard/account/models.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/pharos-dashboard/account/models.py b/tools/pharos-dashboard/account/models.py
index 5181c719..fbabf6c4 100644
--- a/tools/pharos-dashboard/account/models.py
+++ b/tools/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'