How to logout user from Quarkus + Primefaces web app?

177 Views Asked by At

From this guide logging out user should be achieved by calling endpoint registered as quarkus.oidc.logout.path. I have this line in the application.properties:

quarkus.oidc.logout.path=/secure/logout

However, When I try to call it by clicking on the link like this:

<a href="/secure/logout"> <i class="pi pi-arrow-left"/> </a>

I'm getting 404 Resource not found. How to make it work?

Also tried to use quarkus.oidc.logout.frontchannel.path - getting the same 404.

UPDATE: I can't reproduce it with Quarkus 3.2.0.Final, so its not an issue/question anymore:)

0

There are 0 best solutions below