Skip to content

Commit

Permalink
[BE] fix: 채팅 메시지 조회 검증 로직 제거 (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
takoyakimchi authored Jan 4, 2025
1 parent a7f3c72 commit d83d1c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import java.time.LocalDateTime;

public record FindMessagesByTimeRangeRequest(
@Past(message = "채팅 메시지 조회 since 시간은 과거 시간만 입력 가능합니다.")
// @Past(message = "채팅 메시지 조회 since 시간은 과거 시간만 입력 가능합니다.")
LocalDateTime since,

@Past(message = "채팅 메시지 조회 until 시간은 과거 시간만 입력 가능합니다.")
// @Past(message = "채팅 메시지 조회 until 시간은 과거 시간만 입력 가능합니다.")
LocalDateTime until
) {

Expand Down

0 comments on commit d83d1c0

Please sign in to comment.