From 2735ac32bbbf16008450aeb9e673e36546535153 Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 20 Dec 2023 22:44:25 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BB=A4=EB=AE=A4=EB=8B=88=ED=8B=B0=20?= =?UTF-8?q?=EA=B2=8C=EC=8B=9C=EB=AC=BC=20=EC=8B=A0=EA=B3=A0=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 --- src/main/kotlin/kr/co/vividnext/sodalive/report/Report.kt | 2 +- .../kotlin/kr/co/vividnext/sodalive/report/ReportRequest.kt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/report/Report.kt b/src/main/kotlin/kr/co/vividnext/sodalive/report/Report.kt index 3133dcc..08c11fe 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/report/Report.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/report/Report.kt @@ -30,5 +30,5 @@ data class Report( } enum class ReportType { - PROFILE, USER, CHEERS, AUDIO_CONTENT + PROFILE, USER, CHEERS, AUDIO_CONTENT, COMMUNITY_POST } diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/report/ReportRequest.kt b/src/main/kotlin/kr/co/vividnext/sodalive/report/ReportRequest.kt index 0c52797..e94e345 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/report/ReportRequest.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/report/ReportRequest.kt @@ -5,5 +5,6 @@ data class ReportRequest( val reason: String, val reportedMemberId: Long? = null, val cheersId: Long? = null, - val audioContentId: Long? = null + val audioContentId: Long? = null, + val communityPostId: Long? = null )