From 216819e93815ac803a88c847e6aade0eee2445d5 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Thu, 11 Sep 2025 08:26:45 -0500 Subject: [PATCH] fix type --- web/src/types/frigateConfig.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/src/types/frigateConfig.ts b/web/src/types/frigateConfig.ts index 70835073c..5c34aaa7a 100644 --- a/web/src/types/frigateConfig.ts +++ b/web/src/types/frigateConfig.ts @@ -343,7 +343,9 @@ export interface FrigateConfig { }; auth: { - roles: string[]; + roles: { + [roleName: string]: string[]; + }; }; birdseye: BirdseyeConfig;