From c5ef9671c576d61cd31408237fb01f4965ff6840 Mon Sep 17 00:00:00 2001 From: Jeoongu Date: Thu, 15 Aug 2024 01:16:59 +0900 Subject: [PATCH] =?UTF-8?q?[feat]=20:=20#48=20OnGoingStatus=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ussum/homepage/application/post/service/PostService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ussum/homepage/application/post/service/PostService.java b/src/main/java/ussum/homepage/application/post/service/PostService.java index 431707ea..8dd68f86 100644 --- a/src/main/java/ussum/homepage/application/post/service/PostService.java +++ b/src/main/java/ussum/homepage/application/post/service/PostService.java @@ -62,7 +62,7 @@ public void createPost(Long userId, String boardCode, PostCreateRequest postCrea //user도 찾아 와야 하지 않을까 User user = userReader.getUserWithId(userId); - postAppender.createPost(postCreateRequest.toDomain(board, user, category)); + postAppender.createPost(postCreateRequest.toDomain(board, user, category, null)); } public PostResponse editPost(String boardCode,Long postId, PostUpdateRequest postUpdateRequest) {