From 0ced0c201bc0bd0279253b3131f97103c95b0603 Mon Sep 17 00:00:00 2001 From: gidskql6671 Date: Wed, 29 May 2024 02:31:40 +0900 Subject: [PATCH] =?UTF-8?q?=EB=85=B8=EC=B6=9C=EB=90=98=EB=A9=B4=20?= =?UTF-8?q?=EC=95=88=EB=90=98=EB=8A=94=20=EC=B4=88=EB=8C=80=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../knu/dong/onedayonebaek/group/dto/GroupOfListDto.kt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/back/src/main/kotlin/knu/dong/onedayonebaek/group/dto/GroupOfListDto.kt b/back/src/main/kotlin/knu/dong/onedayonebaek/group/dto/GroupOfListDto.kt index 2592488..47ef9fd 100644 --- a/back/src/main/kotlin/knu/dong/onedayonebaek/group/dto/GroupOfListDto.kt +++ b/back/src/main/kotlin/knu/dong/onedayonebaek/group/dto/GroupOfListDto.kt @@ -11,10 +11,7 @@ data class GroupOfListDto( val name: String, @Schema(description = "비밀 그룹 여부", nullable = false, example = "false") - val isPrivate: Boolean, - - @Schema(description = "입장 코드", example = "b3dad41qSd3rYT1") - val inviteCode: String? = null + val isPrivate: Boolean ) -fun Group.toGroupOfListDto() = GroupOfListDto(id!!, name, isPrivate, inviteCode) \ No newline at end of file +fun Group.toGroupOfListDto() = GroupOfListDto(id!!, name, isPrivate) \ No newline at end of file