Skip to content

Commit

Permalink
update :: 권한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Mar 14, 2024
1 parent eb2622d commit 1f741fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class SecurityConfiguration(
.requestMatchers(HttpMethod.POST, "/oauth2/client").authenticated()
.requestMatchers(HttpMethod.PATCH, "/oauth2/client/{client-id}").authenticated()
.requestMatchers(HttpMethod.GET, "/oauth2/client/{client-id}/secret").authenticated()
.requestMatchers(HttpMethod.POST, "/oauth2/token").authenticated()
.requestMatchers(HttpMethod.POST, "/oauth2/token").permitAll()
.requestMatchers(HttpMethod.GET, "/jwk").permitAll()
.requestMatchers(HttpMethod.GET, "/oauth2/authorize").authenticated()
.requestMatchers(HttpMethod.GET, "/oauth2/userinfo").authenticated()
Expand Down

0 comments on commit 1f741fc

Please sign in to comment.