Skip to content

Commit

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

0 comments on commit 62d1c2b

Please sign in to comment.