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 )