From 03cc0a8df3c4fe00b1b4d6e7a98aa5aa8b4774dc Mon Sep 17 00:00:00 2001 From: wvxcheung <83677809+wvxcheung@users.noreply.github.com> Date: Wed, 20 Nov 2024 11:23:10 -0500 Subject: [PATCH] fix: correct mb condition --- graphql/auth.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/graphql/auth.ts b/graphql/auth.ts index f2ee382..243398c 100644 --- a/graphql/auth.ts +++ b/graphql/auth.ts @@ -83,7 +83,10 @@ export const groups: { readonly [authGroup: string]: AuthFilters } = { }, mb:{ sites:{ - whereIn: ['siteID', ['THM, WPG-W, WPG-S, WPG-N, FLN, BDN']] + whereIn: ['siteID', ["THM", "WPG-W", "WPG-S", "WPG-N", "FLN", "BDN"]] + }, + datasets: { + whereNot: ['datasetID', 'NML-WWMPOX'], }, measures: { whereIn: ['measure', ["covN2", "fluA", "fluB", "rsvA", "rsvB"]]