From 04fcec2d0a855991c596670b2f177784c2b660b6 Mon Sep 17 00:00:00 2001 From: Yevhen Odynets Date: Wed, 5 Feb 2025 09:18:08 +0200 Subject: [PATCH] add eslint-enable comment for prev commit --- auth.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth.ts b/auth.ts index ee385b3..e73acf4 100644 --- a/auth.ts +++ b/auth.ts @@ -72,9 +72,11 @@ export const { if (!exisingUser) return token + /* eslint-disable */ token.isOauth = exisingUser.hasOwnProperty('isOauth') ? Boolean(exisingUser.isOauth) : false + /* eslint-enable */ token.provider = exisingUser.provider token.role = exisingUser.role token.profileId = exisingUser.profileId