add allow_invalid_cert field to application model and update related forms and config processing

This commit is contained in:
Eduardo Silva
2026-03-16 14:27:03 -03:00
parent c707d278f3
commit 5cadfba3b7
5 changed files with 38 additions and 10 deletions

View File

@@ -26,6 +26,7 @@ def build_applications_data():
'name': app.display_name or app.name,
'hosts': list(app.hosts.values_list('hostname', flat=True)),
'upstream': app.upstream,
'allow_invalid_cert': app.allow_invalid_cert,
}
entries.append(entry)
return {'entries': entries}