1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Add an option to allow an user to change VNC settings

This commit is contained in:
Valentin Samir 2016-05-09 12:08:31 +02:00
parent 7b3fcd17ea
commit 7efbfec17f
6 changed files with 43 additions and 0 deletions

View file

@ -8,6 +8,7 @@ class UserInstance(models.Model):
instance = models.ForeignKey(Instance)
is_change = models.BooleanField(default=False)
is_delete = models.BooleanField(default=False)
is_vnc = models.BooleanField(default=False)
def __unicode__(self):
return self.instance.name