added super basic JWT mockups

This commit is contained in:
Samuel Andert
2023-08-25 14:59:02 +02:00
parent 3ab9976ce8
commit 52a6fa3005
8 changed files with 265 additions and 3 deletions

View File

@ -55,5 +55,13 @@ configureWunderGraphApplication({
security: {
enableGraphQLEndpoint: process.env.NODE_ENV !== 'production' || process.env.GITPOD_WORKSPACE_ID !== undefined,
},
authentication: {
tokenBased: {
providers: [
{
userInfoEndpoint: 'http://localhost:3000/api/auth/session',
},
],
},
},
});