interface CreateAuthRoutesHandlersInput {
    customState?: string;
    redirectOnSignInComplete?: string;
    redirectOnSignOutComplete?: string;
}

Properties

customState?: string

The customer's custom state added as the redirect URL query parameter for preventing CSRF attacks

redirectOnSignInComplete?: string

The app route redirect to when a sign-in flow completes. Defaults to the root of the app if not provided.

redirectOnSignOutComplete?: string

The app route redirect to when a sign-out flow completes. Defaults to the root of the app if not provided.