Skip to content

Commit

Permalink
build error
Browse files Browse the repository at this point in the history
  • Loading branch information
meltapplee committed Sep 19, 2024
1 parent 5ccbbdc commit 621bc26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class CreatePostService(
Post(
title = request.title,
content = request.content,
user = user!!,
user = user,
date = LocalDateTime.now(),
schoolId = schoolId,
keyWord = keyWord,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class CreateReviewService(
reviewRepository.save(
Review(
date = LocalDateTime.now(),
userId = user.id!!,
userId = user.id,
schoolId = request.schoolId,
star = request.star,
content = request.content,
Expand Down

0 comments on commit 621bc26

Please sign in to comment.