-
Notifications
You must be signed in to change notification settings - Fork 0
Dev #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces configuration updates and several enhancements in the lightening and chat modules to support new features such as file upload limits, unread message counts, batch likes, and improved websocket handling.
- Updated application settings for file uploads
- Enhanced lightening and chat service methods to manage unread messages and batch operations
- Extended websocket configuration and controller methods to include logging and message reading
Reviewed Changes
Copilot reviewed 35 out of 35 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/main/resources/application.yml | Added multipart file size limits for servlet configuration |
| src/main/java/com/codeit/side/user/adapter/in/web/response/ReviewInfoResponses.java | Removed totalCount field from the review responses |
| src/main/java/com/codeit/side/user/adapter/in/web/response/ReviewInfoResponse.java | Added category field to include the lightening category |
| src/main/java/com/codeit/side/lightening/domain/LighteningInfo.java | Added unreadCount field to the lightening info |
| src/main/java/com/codeit/side/lightening/domain/LighteningChatRoom.java | Introduced a new class for encapsulating lightening and chat room data |
| src/main/java/com/codeit/side/lightening/application/service/LighteningService.java | Modified service methods to support unread count and batch like operations |
| src/main/java/com/codeit/side/lightening/application/port/in/LighteningUseCase.java | Updated interface signatures related to the lightening service |
| src/main/java/com/codeit/side/lightening/adapter/in/web/response/LighteningResponse.java and CreateLighteningResponse.java | Adjusted response objects to include unread count and chat room info |
| src/main/java/com/codeit/side/lightening/adapter/in/web/request/LighteningLikesRequest.java | Added a new request DTO for batch like operations |
| src/main/java/com/codeit/side/lightening/adapter/in/web/LighteningController.java | Added a new endpoint for processing batch likes |
| src/main/java/com/codeit/side/common/config/WebSocketConfig.java, SecurityConfig.java and CorsMvcConfig.java | Updated websocket and CORS configurations with new origins and logging |
| src/main/java/com/codeit/side/chat/** | Multiple changes to support user chat message enhancements and unread counts |
No description provided.