Skip to content

Commit

Permalink
[Refactor] spring security 접근 경로 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyunio committed Oct 10, 2024
1 parent 87095f6 commit e73a2e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti

.authorizeHttpRequests(authorize -> authorize
.requestMatchers("swagger-ui/**", "v3/**", "/h2-console/**").permitAll()
.requestMatchers("api/member/sign-up/**").permitAll()
.requestMatchers("api/member/sign-up/**", "api/member/check-nickname").permitAll()
.requestMatchers("oauth2/authorization/**").permitAll()
.anyRequest().authenticated())
.sessionManagement(session -> session
Expand Down

0 comments on commit e73a2e8

Please sign in to comment.