From d79a4442e66bd0d6da4f13c9beb275c6bf2c4494 Mon Sep 17 00:00:00 2001 From: Matthias-VE Date: Mon, 20 May 2024 10:17:43 +0200 Subject: [PATCH] removed unsued route --- backend/web-bff/App/routes/auth.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/backend/web-bff/App/routes/auth.js b/backend/web-bff/App/routes/auth.js index e58df547..d90f8041 100644 --- a/backend/web-bff/App/routes/auth.js +++ b/backend/web-bff/App/routes/auth.js @@ -18,18 +18,7 @@ router.get('/signin', authProvider.login({ successRedirect: FRONTEND_URI, })); -/** - * No longer used. TODO: remove - * - * Route that acquires a token for accessing the backend resource server. - * It stores this token in the session, it does not return the token. - * - * @route GET /web/auth/acquireToken - */ -router.get('/acquireToken', authProvider.acquireToken({ - scopes: [msalConfig.auth.clientId + "/.default"], - redirectUri: REDIRECT_URI -})); + /** * Route that starts the logout flow for msal.