From ea83bc759ad7fe3a6538783178c397d089dfdddc Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Wed, 24 Sep 2025 21:56:20 +0200 Subject: [PATCH] fix(idnot): add /authorized-client route for idnot callback [skip ci] --- src/routes/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/index.ts b/src/routes/index.ts index 5c09eeb..38d26e0 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -21,5 +21,6 @@ router.use('/api', stripeRoutes); // State and callback endpoints (front-agnostic) router.post('/api/v1/idnot/state', StateHandlers.createState); router.get('/idnot/callback', IdNotCallbackHandlers.callback); +router.get('/authorized-client', IdNotCallbackHandlers.callback); export { router as routes };