Skip to content

Commit ffed84b

Browse files
authored
hotfix : 채팅창 스팸 기능 먹통으로 핫픽스 (#62)
1 parent 963523e commit ffed84b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/org/ezcode/codetest/presentation/chattingmanagement/chatting/config/ChatWebConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ public class ChatWebConfig implements WebMvcConfigurer {
1616
@Override
1717
public void addInterceptors(InterceptorRegistry registry) {
1818
registry.addInterceptor(chatSpamInterceptor)
19-
.addPathPatterns("/room/*/chat");
19+
.addPathPatterns("/api/room/*/chat");
2020
}
2121
}

src/main/java/org/ezcode/codetest/presentation/chattingmanagement/chatting/interceptor/ChatLimitInterceptor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import org.springframework.security.core.Authentication;
88
import org.springframework.security.core.context.SecurityContextHolder;
99
import org.springframework.stereotype.Component;
10-
import org.springframework.web.bind.MethodArgumentNotValidException;
1110
import org.springframework.web.servlet.HandlerInterceptor;
1211
import org.springframework.web.servlet.HandlerMapping;
1312

0 commit comments

Comments
 (0)