From 73d2aa90e6d1215bc46e98cd6fdbb828f56f948c Mon Sep 17 00:00:00 2001 From: Shaun Lum Date: Mon, 25 Nov 2024 13:38:29 -0800 Subject: [PATCH] added openid and profile to scope --- backend/src/routes/auth.js | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/routes/auth.js b/backend/src/routes/auth.js index ba94301a..29552609 100644 --- a/backend/src/routes/auth.js +++ b/backend/src/routes/auth.js @@ -41,6 +41,7 @@ router.get( "/login", passport.authenticate("oidc", { failureRedirect: "error", + scope: ['openid','profile'] }) );