We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to redirect from /__/auth/action?mode=verifyEmail&oobCode=123 to another page /processing/?mode=verifyEmail&oobCode=123.
/__/auth/action?mode=verifyEmail&oobCode=123
/processing/?mode=verifyEmail&oobCode=123
But when I'm redirecting auto_route does not pass the query parameters. How to keep these query parameters for next route?
auto_route
My Router configuration is:
[ // ... RedirectRoute(path: '/__/auth/action', redirectTo: '/processing'), AutoRoute( page: ProcessingRoute.page, path: '/processing', ), // ... ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to redirect from
/__/auth/action?mode=verifyEmail&oobCode=123
to another page/processing/?mode=verifyEmail&oobCode=123
.But when I'm redirecting
auto_route
does not pass the query parameters. How to keep these query parameters for next route?My Router configuration is:
The text was updated successfully, but these errors were encountered: