Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions symfony-ux/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ If you want to redirect the user to another page after the login succeeded, you
```twig
{{ stimulus_controller('@web-auth/webauthn-stimulus',
{
requestSuccessRedirectUri: path('app.dashboard')
requestSuccessRedirectUri: path('app.dashboard'),
requestResultUrl: path('webauthn.controller.security.main.request.result'),
requestOptionsUrl: path('webauthn.controller.security.main.request.options')
}
Expand All @@ -80,7 +80,7 @@ When authenticators are available on the device and the browser is aware of them
{{ stimulus_controller('@web-auth/webauthn-stimulus',
{
useBrowserAutofill: true,
requestSuccessRedirectUri: path('app.dashboard')
requestSuccessRedirectUri: path('app.dashboard'),
requestResultUrl: path('webauthn.controller.security.main.request.result'),
requestOptionsUrl: path('webauthn.controller.security.main.request.options')
}
Expand Down