Skip to content

Commit

Permalink
update :: update authorize
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Mar 13, 2024
1 parent e4220c8 commit 3ce4bdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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").permitAll()
.requestMatchers(HttpMethod.GET, "/oauth2/userinfo").authenticated()
.requestMatchers(HttpMethod.POST, "/oauth2/user").permitAll()
.requestMatchers(HttpMethod.POST, "/oauth2/user/login").permitAll()
.requestMatchers(HttpMethod.POST, "/oauth2/user/reissue").authenticated()
Expand Down

0 comments on commit 3ce4bdc

Please sign in to comment.