mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
707 B
23 lines
707 B
# Generated by Django 3.2.14 on 2022-07-28 03:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('tickets', '0017_auto_20220623_1027'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='applyapplicationticket',
|
|
name='apply_actions',
|
|
field=models.IntegerField(
|
|
choices=[
|
|
(255, 'All'), (1, 'Connect'), (2, 'Upload file'), (4, 'Download file'), (6, 'Upload download'),
|
|
(8, 'Clipboard copy'), (16, 'Clipboard paste'), (24, 'Clipboard copy paste')
|
|
], default=255,
|
|
verbose_name='Actions'),
|
|
),
|
|
]
|