Skip to content

Commit

Permalink
fix: 크루가 아니어도 댓글 작성 가능
Browse files Browse the repository at this point in the history
  • Loading branch information
gracefulBrown committed Dec 26, 2024
1 parent a675586 commit 251821f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class CommentService {
public Long insertComment(CommentSaveRequest request) {
Member findMember = memberRepository.findById(request.getMemberId())
.orElseThrow(() -> new BadRequestException(MEMBER_NOT_FOUND));
validateMemberIsCrew(findMember);
// validateMemberIsCrew(findMember);
Studylog findStudylog = studylogRepository.findById(request.getStudylogId())
.orElseThrow(() -> new BadRequestException(STUDYLOG_NOT_FOUND));

Expand Down

0 comments on commit 251821f

Please sign in to comment.