Skip to content

Commit 63d27ff

Browse files
committed
fix: 삭제되지 않은 댓글만 조회하는 기능 추가
1 parent 0bfde53 commit 63d27ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/back/domain/post/comment/repository/CommentRepository.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
import com.back.domain.post.comment.entity.Comment;
44
import com.back.domain.post.comment.enums.CommentStatus;
5-
import java.util.List;
65
import org.springframework.data.jpa.repository.JpaRepository;
76
import org.springframework.stereotype.Repository;
87

8+
import java.util.List;
9+
910
@Repository
1011
public interface CommentRepository extends JpaRepository<Comment, Long> {
1112

0 commit comments

Comments
 (0)