You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`apiPath?: string`| Sets base path all operations are based on |
124
+
|`signInPath?: string`| Sets path forsignin|
125
+
|`signInRedirect?: string`| Sets redirect path for failed CanActivate |
126
+
|`signInStoredUrlStorageKey?: string`| Sets locale storage key to store URL before displaying signIn page |
127
+
|`signOutPath?: string`| Sets path for sign out |
128
+
|`validateTokenPath?: string`| Sets path for token validation |
129
+
|`registerAccountPath?: string`| Sets path for account registration |
130
+
|`deleteAccountPath?: string`| Sets path for account deletion |
131
+
|`registerAccountCallback?: string`| Sets the path user are redirected to after email confirmation for registration |
132
+
|`updatePasswordPath?: string`| Sets path for password update |
133
+
|`resetPasswordPath?: string`| Sets path for password reset |
134
+
|`resetPasswordCallback?: string`| Sets the path user are redirected to after email confirmation for password reset |
135
+
|`userTypes?: UserTypes[]`| Allows the configuration of multiple user types (see [Multiple User Types](#multiple-user-types)) |
136
+
|`globalOptions?: GlobalOptions`| Allows the configuration of global options (see below) |
135
137
136
138
### Global Options
137
139
| Options | Description |
@@ -349,6 +351,22 @@ Returns current authentication data which are used to set auth headers.
349
351
350
352
`get currentAuthData(): AuthData`
351
353
354
+
### Redirect original requested URL
355
+
If you want to redirect to the protected URL after signing in, you need to set`signInStoredUrlStorageKey` and in your code you can do something like this
0 commit comments