intellij-quarkus
intellij-quarkus copied to clipboard
Qute navigation
When in a Qute template, if it is a template for which we know the URI it maps to, I would like a button from the template that starts my browser for that page. This would be especially useful when debugging a template, because I could start the browser in the correct page directly from the template, thus triggering the breakpoint easily.
This is possible for:
- Qute Web by convention
- Renarde indirectly: you already know where is the corresponding
@CheckedTemplatemethod that produces the template, so you need to find the (GET: not@POSTor others because the browser will just not send that http method) endpoint method that invokes that checked template method. Since you already have the URI mapping for those methods, you can use that for the browser. - Roq probably, also by convention