diff options
author | 2016-08-23 13:36:37 +0000 | |
---|---|---|
committer | 2016-08-23 13:36:37 +0000 | |
commit | 8b19eb63a99014cc1c59d05efe2e1fbe5f98a379 (patch) | |
tree | 7bdec8c03b61122474416d30a3c6d1eba603c702 /tools/pharos-dashboard/account/models.py | |
parent | f94c874069cfaef0f59c92c903876ce3d488e2b0 (diff) | |
parent | 6c993d9e3bd9a7c0fb94d7056e664648dd8d85cb (diff) |
Merge changes from topic 'pharos-dashboard'
* changes:
Create Jira issue for new booking
Remove database migration files
Diffstat (limited to 'tools/pharos-dashboard/account/models.py')
-rw-r--r-- | tools/pharos-dashboard/account/models.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/pharos-dashboard/account/models.py b/tools/pharos-dashboard/account/models.py index fbabf6c4..fb2c8ddd 100644 --- a/tools/pharos-dashboard/account/models.py +++ b/tools/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) |