Skip to content

Commit

Permalink
update :: update urls
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Mar 9, 2024
1 parent fd4a1b9 commit cf2ae7b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ class SecurityConfiguration(
.requestMatchers(HttpMethod.GET, "/jwk").permitAll()
.requestMatchers(HttpMethod.GET, "/oauth2/authorize").authenticated()
.requestMatchers(HttpMethod.GET, "/oauth2/userinfo").permitAll()
.requestMatchers(HttpMethod.POST, "/user").permitAll()
.requestMatchers(HttpMethod.POST, "/user/login").permitAll()
.requestMatchers(HttpMethod.POST, "/user/reissue").authenticated()
.requestMatchers(HttpMethod.PUT, "/user/update").authenticated()
.requestMatchers(HttpMethod.GET, "/user/myInfo").authenticated()
.requestMatchers(HttpMethod.POST, "/oauth2/user").permitAll()
.requestMatchers(HttpMethod.POST, "/oauth2/user/login").permitAll()
.requestMatchers(HttpMethod.POST, "/oauth2/user/reissue").authenticated()
.requestMatchers(HttpMethod.PUT, "/oauth2/user/update").authenticated()
.requestMatchers(HttpMethod.GET, "/oauth2/user/myInfo").authenticated()
.anyRequest().authenticated()
.and()

Expand Down

0 comments on commit cf2ae7b

Please sign in to comment.