Replies: 1 comment
-
You don't need to specify do you have a sample app which reproduces the issue?. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm encountering an issue with Micronaut security in 4.6.3. I have security enabled in my application.properties file:
micronaut.security.enabled=true
However, when I try to access a controller method annotated with @secured(SecurityRule.IS_ANONYMOUS), I receive an "Unauthorized exception." Here's the relevant code snippet:
@controller("/api/v1")
public class MyController {
}
Beta Was this translation helpful? Give feedback.
All reactions