From 8fd5dcea9267bc1e1f91a5dd94f18481e3857354 Mon Sep 17 00:00:00 2001 From: Foysal Ahamed Date: Fri, 31 Jan 2025 11:46:45 -0800 Subject: [PATCH] :bug: Add account, record and identity events to the list of allowed event filter (#3464) :bug: Add account, record and identity events to he list of allowed event filter --- packages/ozone/src/api/util.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/ozone/src/api/util.ts b/packages/ozone/src/api/util.ts index 7d9c335c876..30cd23d1cd4 100644 --- a/packages/ozone/src/api/util.ts +++ b/packages/ozone/src/api/util.ts @@ -154,6 +154,9 @@ const eventTypes = new Set([ 'tools.ozone.moderation.defs#modEventResolveAppeal', 'tools.ozone.moderation.defs#modEventTag', 'tools.ozone.moderation.defs#modEventDivert', + 'tools.ozone.moderation.defs#accountEvent', + 'tools.ozone.moderation.defs#identityEvent', + 'tools.ozone.moderation.defs#recordEvent', ]) export const getMemberRole = (role: string) => {