Skip to content

Commit

Permalink
Merge pull request #90 from Yeungnam-Nyang/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
pjs1710 authored Dec 3, 2024
2 parents 1291c66 + bc9039f commit 0106f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/YNN/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authorizeHttpRequests(authorize -> authorize
.requestMatchers("/swagger-ui/**", "/v3/api-docs/**").permitAll()
/* JWT토큰 없이 접근 가능 */
.requestMatchers( "/api/signup/**","/api/send/new-password","/api/find/id","/api/login","/api/sms/**")
.requestMatchers( "/api/signup/**","/api/send/new-password","/api/find/id","/api/login","/api/sms/**", "/api/friend/**")
.permitAll()
.anyRequest().authenticated()
)
Expand Down

0 comments on commit 0106f26

Please sign in to comment.