From 920b3b6aef18caa3f446244b93a7263d9eebe50b Mon Sep 17 00:00:00 2001 From: Claus-Peter Huebner Date: Tue, 2 Apr 2024 16:09:12 +0200 Subject: [PATCH] linting --- .../src/graphql/resolver/util/authenticateGmsUserPlayground.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts b/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts index 53c752b5d..d1c1e6daf 100644 --- a/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts +++ b/backend/src/graphql/resolver/util/authenticateGmsUserPlayground.ts @@ -11,6 +11,7 @@ export async function authenticateGmsUserPlayground( const result = new GmsUserAuthenticationResult() result.url = CONFIG.GMS_URL.concat('/playground') result.token = await verifyAuthToken(dbUser.communityUuid, token) + // eslint-disable-next-line no-console console.log('GmsUserAuthenticationResult:', result) return result }