Skip to content

Commit

Permalink
chore :: 유저 정보 권한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Feb 28, 2024
1 parent ba05210 commit 78bb9d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class SecurityConfiguration(
.requestMatchers(HttpMethod.POST, "/oauth2/token").permitAll()
.requestMatchers(HttpMethod.GET, "/jwk").permitAll()
.requestMatchers(HttpMethod.GET, "/oauth2/authorize").authenticated()
.requestMatchers(HttpMethod.GET, "/oauth2/userinfo").authenticated()
.requestMatchers(HttpMethod.GET, "/oauth2/userinfo").permitAll()
.anyRequest().authenticated()
}

Expand Down

0 comments on commit 78bb9d2

Please sign in to comment.