You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As described in the documentation, I have globally set my api as authenticated:
quarkus.http.auth.permission.authenticated.paths=/api/*
Now however, for a webhook I need a public endpoint. The documentation was not clear (enough) that I needed to
open a path again like this:
quarkus.http.auth.permission.public.paths=/api/noauth/*
I was expecting it would be enough to just leave out the @authenticated and allowed roles annotations from the open endpoint, but that doesn't work in case of a globally authenticated api path.
The text was updated successfully, but these errors were encountered:
As described in the documentation, I have globally set my api as authenticated:
quarkus.http.auth.permission.authenticated.paths=/api/*
Now however, for a webhook I need a public endpoint. The documentation was not clear (enough) that I needed to
open a path again like this:
quarkus.http.auth.permission.public.paths=/api/noauth/*
I was expecting it would be enough to just leave out the @authenticated and allowed roles annotations from the open endpoint, but that doesn't work in case of a globally authenticated api path.
The text was updated successfully, but these errors were encountered: