mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-17 22:36:17 +00:00
add allow_invalid_cert field to application model and update related forms and config processing
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app_gateway', '0006_alter_accesspolicy_policy_type'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='application',
|
||||
name='allow_invalid_cert',
|
||||
field=models.BooleanField(default=False, help_text='Allow invalid or self-signed TLS certificates from the upstream'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user