diff --git a/server/src/app.ts b/server/src/app.ts index c588900e4..5a062ea3a 100644 --- a/server/src/app.ts +++ b/server/src/app.ts @@ -509,6 +509,7 @@ export const start = async ({ accountMembershipId, identificationLevel, projectId, + email, } = request.query; if ( typeof redirectTo === "string" && @@ -562,6 +563,7 @@ export const start = async ({ createAuthUrl({ scope: scope.split(" ").filter(item => item != null && item != ""), params: { + ...(email != null ? { email } : null), ...(onboardingId != null ? { onboardingId } : null), ...(identificationLevel != null ? { identificationLevel } : null), ...(projectId != null ? { projectId } : null),