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:
parent
7b3fcd17ea
commit
7efbfec17f
6 changed files with 43 additions and 0 deletions
19
accounts/migrations/0004_userinstance_is_vnc.py
Normal file
19
accounts/migrations/0004_userinstance_is_vnc.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('accounts', '0003_usersshkey'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='userinstance',
|
||||
name='is_vnc',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue