fix: update access list handling in ProxyHostService and forms to support access_list structure

This commit is contained in:
GitHub Actions
2026-02-28 05:11:33 +00:00
parent b04b94e429
commit cdf7948575
3 changed files with 9 additions and 3 deletions

View File

@@ -43,6 +43,12 @@ export interface ProxyHost {
certificate_id?: number | null;
certificate?: Certificate | null;
access_list_id?: number | string | null;
access_list?: {
uuid: string;
name: string;
description: string;
type: string;
} | null;
security_header_profile_id?: number | null;
dns_provider_id?: number | null;
security_header_profile?: {