This commit is contained in:
Claus-Peter Huebner 2024-04-02 16:09:12 +02:00
parent 12cae42d0e
commit 920b3b6aef

View File

@ -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
}