authrequestId param for register with password

This commit is contained in:
peintnermax
2024-04-01 14:37:03 +02:00
parent 86d5621e46
commit 963486c5c0

View File

@@ -95,6 +95,10 @@ export default function RegisterFormWithoutPassword({
registerParams.organization = organization; registerParams.organization = organization;
} }
if (authRequestId) {
registerParams.authRequestId = authRequestId;
}
return withPassword return withPassword
? router.push(`/register?` + new URLSearchParams(registerParams)) ? router.push(`/register?` + new URLSearchParams(registerParams))
: submitAndRegister(value) : submitAndRegister(value)