From f4e8248d126921603280dffab0e907366391bb72 Mon Sep 17 00:00:00 2001 From: maxbr Date: Mon, 22 Aug 2016 18:59:47 +0200 Subject: Create Jira issue for new booking JIRA: RELENG-12 The issue is assigned to the lab owner and to the POD Access Request Component. The pgp and ssh keys are uploaded to jira as an attachement. Signed-off-by: maxbr --- pharos-dashboard/account/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pharos-dashboard/account/models.py') diff --git a/pharos-dashboard/account/models.py b/pharos-dashboard/account/models.py index fbabf6c..fb2c8dd 100644 --- a/pharos-dashboard/account/models.py +++ b/pharos-dashboard/account/models.py @@ -4,12 +4,14 @@ from django.contrib.auth.models import User from dashboard.models import Resource +def upload_to(object, filename): + return object.user.username + '/' + filename class UserProfile(models.Model): user = models.OneToOneField(User, on_delete=models.CASCADE) timezone = models.CharField(max_length=100, blank=False, default='UTC') - ssh_public_key = models.CharField(max_length=2048, blank=False) - pgp_public_key = models.CharField(max_length=2048, blank=False) + 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) 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) -- cgit 1.2.3-korg