diff --git a/dashcaddy-api/routes/auth/index.js b/dashcaddy-api/routes/auth/index.js index 370c957..28adeae 100644 --- a/dashcaddy-api/routes/auth/index.js +++ b/dashcaddy-api/routes/auth/index.js @@ -22,7 +22,12 @@ module.exports = function(ctx) { session: ctx.session, asyncHandler: ctx.asyncHandler, errorResponse: ctx.errorResponse, - log: ctx.log + log: ctx.log, + // Additional deps for sso-gate + fetchT: ctx.fetchT, + getServiceById: ctx.getServiceById, + licenseManager: ctx.licenseManager, + servicesStateManager: ctx.servicesStateManager }; const { getAppSession, appSessionCache } = initSessionHandlers(deps);