Skip to content

Commit

Permalink
fix: edit security config
Browse files Browse the repository at this point in the history
  • Loading branch information
haen-su committed Nov 14, 2023
1 parent 63a0fad commit 62c9164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/oven/server/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public SecurityFilterChain configure(HttpSecurity httpSecurity) throws Exception
.and()
.authorizeHttpRequests()
.requestMatchers(swagger).permitAll()
.requestMatchers(HttpMethod.POST, "/auth/**").permitAll()
.requestMatchers("/auth/**").permitAll()
.requestMatchers("/ws/endpoint").permitAll()
.anyRequest().authenticated()

Expand Down

0 comments on commit 62c9164

Please sign in to comment.