Skip to content

Commit

Permalink
misc: added redirect after user creation
Browse files Browse the repository at this point in the history
  • Loading branch information
sheensantoscapadngan committed Jun 20, 2024
1 parent e9639df commit 8d55c28
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ export const EmailConfirmationStep = ({
router.push(`/login/ldap?organizationSlug=${organizationSlug}`);
break;
}
case UserAliasType.OIDC: {
router.push(`/api/v1/sso/oidc/login?orgSlug=${organizationSlug}`);
break;
}
default: {
setStep(1);
break;
Expand Down

0 comments on commit 8d55c28

Please sign in to comment.