summaryrefslogtreecommitdiffstats
path: root/dashboard/src/dashboard/models.py
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-10 11:44:23 -0500
committerSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-17 21:42:33 +0000
commit654ed9bbfe48ecdf9b8237c73bd811374b1b350b (patch)
treed384dcc67a578c1254944083080adbb31de84a20 /dashboard/src/dashboard/models.py
parentc32479489db670904579a580a918f3513581fda9 (diff)
Add Nullable Lab Field to Resources
Jira: PHAROS-347 Resources are now possible to associate with lab instances upon creation Change-Id: Id8abbcc448a6d840d55e4bf5130dbec22c8bc58f
Diffstat (limited to 'dashboard/src/dashboard/models.py')
-rw-r--r--dashboard/src/dashboard/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dashboard/src/dashboard/models.py b/dashboard/src/dashboard/models.py
index 3de7db3..ff55232 100644
--- a/dashboard/src/dashboard/models.py
+++ b/dashboard/src/dashboard/models.py
@@ -15,6 +15,7 @@ from django.db import models
from django.utils import timezone
from jenkins.models import JenkinsSlave
+from account.models import Lab
class Resource(models.Model):
@@ -22,6 +23,7 @@ class Resource(models.Model):
name = models.CharField(max_length=100, unique=True)
description = models.CharField(max_length=300, blank=True, null=True)
url = models.CharField(max_length=100, blank=True, null=True)
+ resource_lab = models.ForeignKey(Lab, related_name='lab_resource_set', null=True, blank=True)
owner = models.ForeignKey(User, related_name='user_lab_owner', null=True, blank=True)
vpn_users = models.ManyToManyField(User, related_name='user_vpn_users', blank=True)
slave = models.ForeignKey(JenkinsSlave, on_delete=models.DO_NOTHING, null=True, blank=True)