Skip to content

Commit

Permalink
fix: correct mb condition
Browse files Browse the repository at this point in the history
  • Loading branch information
wvxcheung committed Nov 20, 2024
1 parent 32f8e9e commit 03cc0a8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion graphql/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"]]
Expand Down

0 comments on commit 03cc0a8

Please sign in to comment.