We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 701902e commit 6c5c905Copy full SHA for 6c5c905
1 file changed
src/main/java/com/trynoice/api/Application.java
@@ -131,7 +131,6 @@ public SecurityFilterChain securityFilterChain(
131
.mvcMatchers(HttpMethod.POST, "/v1/accounts/signUp").anonymous()
132
.mvcMatchers(HttpMethod.POST, "/v1/accounts/signIn").anonymous()
133
.mvcMatchers(HttpMethod.GET, "/v1/accounts/credentials").anonymous()
134
- .mvcMatchers(HttpMethod.POST, "/v1/subscriptions/googlePlay/webhook").anonymous()
135
.mvcMatchers(HttpMethod.POST, "/v1/subscriptions/stripe/webhook").anonymous()
136
.antMatchers("/v?*/**").fullyAuthenticated()
137
.anyRequest().permitAll();
0 commit comments