feat: Add successRedirectUrl to auth options (#6792)

This commit is contained in:
Oli Juhl
2024-03-25 08:55:21 +01:00
committed by GitHub
parent aa154665de
commit 0deb2776ad
11 changed files with 147 additions and 87 deletions
@@ -24,6 +24,11 @@ export type AuthenticationResponse = {
* Redirect location. Location takes precedence over success.
*/
location?: string
/**
* Redirect url for successful authentication.
*/
successRedirectUrl?: string
}
/**