From ef1dafa77cec323852e464ad36e8a7a39daf7e05 Mon Sep 17 00:00:00 2001 From: ani2689 Date: Tue, 14 Nov 2023 13:47:20 +0900 Subject: [PATCH] =?UTF-8?q?update=20::=20mapper=20=EC=A3=BC=EC=84=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../team/msg/domain/post/mapper/PostRequestMapperImpl.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bitgouel-api/src/main/kotlin/team/msg/domain/post/mapper/PostRequestMapperImpl.kt b/bitgouel-api/src/main/kotlin/team/msg/domain/post/mapper/PostRequestMapperImpl.kt index 9aff7575b..5edd8f34e 100644 --- a/bitgouel-api/src/main/kotlin/team/msg/domain/post/mapper/PostRequestMapperImpl.kt +++ b/bitgouel-api/src/main/kotlin/team/msg/domain/post/mapper/PostRequestMapperImpl.kt @@ -7,6 +7,9 @@ import team.msg.domain.post.presentation.web.CreatePostWebRequest @Component class PostRequestMapperImpl : PostRequestMapper { + /** + * post 생성 Web Request 를 애플리케이션 영역에서 사용될 Dto 로 매핑합니다. + */ override fun createPostWebRequestToDto(webRequest: CreatePostWebRequest, feedType: FeedType) = CreatePostRequest( title = webRequest.title, content = webRequest.content,