diff --git a/src/services/authenticationService.ts b/src/services/authenticationService.ts index 33f0156..d8ce1e3 100644 --- a/src/services/authenticationService.ts +++ b/src/services/authenticationService.ts @@ -14,6 +14,9 @@ export async function isDiscordAuthenticated(): Promise { const ownerId: string | undefined = getOwnerId() if (!ownerId) return false + // white list kiger for card access + if (ownerId === '308005533028319232') return true + return !!(await fetchActiveTeamByOwnerId(ownerId)) }