Skip to content

Commit

Permalink
hotfix: 닉네임 중복확인, 온보딩 관련 security 로직 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GaHee99 committed Feb 14, 2024
1 parent f6358fd commit 02463e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/gam/api/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ SecurityFilterChain defaultSecurityFilterChain(HttpSecurity http) throws Excepti
.and()
.authorizeHttpRequests()
.antMatchers("/v3/api-docs/**", "/swagger-ui.html", "/webjars/swagger-ui/**", "/swagger-ui/**",
"/api/v1/social/**","/api/v1/s3/**").permitAll()
"/api/v1/social/**","/api/v1/s3/**", "/api/v1/user/name/check", "/api/v1/user/onboard").permitAll()
.and()
.authorizeHttpRequests()
.antMatchers("/api/v1/magazine/detail").hasAuthority("PERMITTED")
Expand Down

0 comments on commit 02463e3

Please sign in to comment.