mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-06-06 12:29:37 +00:00
Add an option to allow an user to change VNC settings
This commit is contained in:
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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user