크리에이터 커뮤니티 #102

Merged
klaus merged 18 commits from test into main 2023-12-21 15:10:56 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 2735ac32bb - Show all commits

View File

@ -30,5 +30,5 @@ data class Report(
}
enum class ReportType {
PROFILE, USER, CHEERS, AUDIO_CONTENT
PROFILE, USER, CHEERS, AUDIO_CONTENT, COMMUNITY_POST
}

View File

@ -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
)