Skip to content

Commit

Permalink
Allow GET on /ping
Browse files Browse the repository at this point in the history
  • Loading branch information
amigoscode committed Jan 30, 2023
1 parent 8e27f41 commit 97b6bdd
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
"/api/v1/auth/login"
)
.permitAll()
.requestMatchers(
HttpMethod.GET,
"/ping"
)
.permitAll()
.anyRequest()
.authenticated()
.and()
Expand Down

0 comments on commit 97b6bdd

Please sign in to comment.