Has anything changed regarding return_to URLs hand...
# talk-kratos
f
Has anything changed regarding return_to URLs handling? After the upgrade to v0.13.0 kratos ignores it and redirects to ui_url after a verification link click. default_browser_return_url also doesn't seem to affect anything anymore :<
b
yes, we added a continue screen after successful verification. The nodes of the flow contain a continue anchor link that leads to the return_to.
f
Oh, okay... I haven't seen any breaking changes changelogs anywhere though...
Is it documented somewhere?
b
we didn’t consider it breaking, though it probably should’ve been.
f
So,
after_verification_return_to
doesn't actually redirect anything anymore and we have to redirect manually, based on flow nodes, right?
b
The user can click on the continue link on the screen (which leads to after_verification_return_to). Atleast that was the intention. You probably want to show some kind of “you successfully verified your account”, right?
f
right!
Before that the user was automatically redirected to the "successfully verified" page right after clicking the email link (thanks to
after_verification_return_to
)
b
yes, and now you can implement that page based on the UI nodes returned by the flow.
f
I can't see anything related in the nodes list :<
b
that’s a new flow, I am talking about the flow after the link was clicked.
f
got it, thanks!