From b533e5273d066daae1c8d14a919572d457e1da7d Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 25 Jul 2023 17:11:46 +0530 Subject: [PATCH] oidc: set authType to oidc --- src/oidc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oidc.js b/src/oidc.js index 2beb44323..48634032e 100644 --- a/src/oidc.js +++ b/src/oidc.js @@ -502,7 +502,7 @@ function interactionLogin(provider) { const ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress || null; const userAgent = req.headers['user-agent'] || ''; - const auditSource = { authType: 'basic', ip }; + const auditSource = { authType: 'oidc', ip }; const clientId = details.params.client_id; debug(`interactionLogin: for OpenID client ${clientId} from ${ip}`);