From f9d3ed6840635a55c03f8a350e65a1df4decea74 Mon Sep 17 00:00:00 2001 From: Josh Worden Date: Thu, 3 Nov 2022 11:27:24 -0500 Subject: [PATCH] Include login source in IdX authenticate hook args --- packages/marko-web-identity-x/routes/authenticate.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/marko-web-identity-x/routes/authenticate.js b/packages/marko-web-identity-x/routes/authenticate.js index ba437e06d..031d05734 100644 --- a/packages/marko-web-identity-x/routes/authenticate.js +++ b/packages/marko-web-identity-x/routes/authenticate.js @@ -38,6 +38,7 @@ module.exports = asyncRoute(async (req, res) => { res, user, authToken, + loginSource, }); tokenCookie.setTo(res, authToken.value); contextCookie.setTo(res, { loginSource });