Stéphane Épardaud
Stéphane Épardaud
No, check out the todo app structure :) You want a single main template, and extend it from all the other pages: ``` - main.html - Application/index.html - Application/about.html -...
> Create a home, welcome, main, etc.html page at the root of resources/templates/home.html I really mean "No", because at the toplevel you should only put your main templates. All the...
Haha, yes. I was going to replace it with https://quarkus.io/guides/security-csrf-prevention but I realised this would cause all `POST` methods to suddenly return a 400 if the token is not included....
It's not renaming that makes it fail. It's depending on `quarkus-security-csrf-reactive` because you won't be able to do any `POST` request without a CSRF token that you first `GET`.
In `Play` it was not automatic, you had to call `checkAuthenticity()` from your controller methods to check the CSRF token, making it opt-in. Perhaps this is what's missing for an...
I have a branch resolving this by using the new Quarkus CSRF module, but it's not working ATM so I have to wait for it to be fixed.
OK, finally, it's done!
https://quarkiverse.github.io/quarkiverse-docs/quarkus-renarde/dev/index.html#_obtaining_a_uri_in_qute_views answers this, you can use `{uri:Blogs.view(parseInt(full.id))}`. Let me know if this works for you, and feel free to send a PR to improve the docs if you think it's...
Ooooh, this is very nice indeed. I'd like to add this feature. Do you think you'd be up to contribute it? I can help you get started if you want....
> Missing authenticator option I believe this one is due to the vert.x webauthn transports not supporting the `hybrid` transport. I see another one is missing: `smart-card`. Why this passes...