Skip to content

Commit

Permalink
setting: allRequest permitAll (#7)
Browse files Browse the repository at this point in the history
pull Request 하기 전, 팀원들의 개발 편의를 위해 암호화 비활성화
  • Loading branch information
toychip committed Nov 29, 2023
1 parent f2e548a commit 9e7174c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
,"/oauth/**"
,"/favicon.ico"
,"/login/**"
// , "/**"
, "/**"
).permitAll()
.anyRequest().authenticated());
.anyRequest().permitAll());
http
.oauth2Login()
.authorizationEndpoint().baseUri("/login/oauth2/code/github")
Expand Down

0 comments on commit 9e7174c

Please sign in to comment.