Skip to content

Commit

Permalink
Merge pull request #55 from oven-2023/feature/chat
Browse files Browse the repository at this point in the history
fix: edit endpoint
  • Loading branch information
haen-su authored Nov 7, 2023
2 parents f3d7d8d + 84a756a commit c07d6dc
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 @@ -59,7 +59,7 @@ public SecurityFilterChain configure(HttpSecurity httpSecurity) throws Exception
.authorizeHttpRequests()
.requestMatchers(swagger).permitAll()
.requestMatchers(HttpMethod.POST, "/auth/**").permitAll()
.requestMatchers("/stomp/chat").permitAll()
.requestMatchers("/ws/endpoint").permitAll()
.anyRequest().authenticated()

.and()
Expand Down

0 comments on commit c07d6dc

Please sign in to comment.