From 0b1a7a26d4e3235733c4d44dd553752bc9609941 Mon Sep 17 00:00:00 2001 From: Adrien Joly <531781+adrienjoly@users.noreply.github.com> Date: Sat, 9 Mar 2024 14:45:25 +0100 Subject: [PATCH] fix(auth): revert previous commit Revert "fix(auth): try to refresh auth0 session silently, without having to re-login everyday" This reverts commit c8fb684f7e0c8628fc2adf1889ad48ba4c8b63c3. --- app/lib/auth0/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/lib/auth0/index.js b/app/lib/auth0/index.js index ae21ace7..be80d27a 100644 --- a/app/lib/auth0/index.js +++ b/app/lib/auth0/index.js @@ -73,7 +73,6 @@ exports.Auth0Wrapper = class Auth0Wrapper { const openId = require('express-openid-connect'); return openId.auth({ authRequired: false, - attemptSilentLogin: true, auth0Logout: true, baseURL: urlPrefix, secret: this.env.AUTH0_SECRET,