From 7074019467d79ad85a465ea3b544ff0298386c9b Mon Sep 17 00:00:00 2001 From: "Kim, Joon" Date: Tue, 10 Feb 2026 23:18:43 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=95=A0=20=EC=9D=BC=20=EC=9D=91?= =?UTF-8?q?=EB=8B=B5=20=ED=98=95=ED=83=9C=EC=97=90=20isResources=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bllsoneshot/task/dto/response/task/TaskResponse.kt | 3 ++- .../kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/goodspace/bllsoneshot/task/dto/response/task/TaskResponse.kt b/src/main/kotlin/goodspace/bllsoneshot/task/dto/response/task/TaskResponse.kt index 9431284..ae95a81 100644 --- a/src/main/kotlin/goodspace/bllsoneshot/task/dto/response/task/TaskResponse.kt +++ b/src/main/kotlin/goodspace/bllsoneshot/task/dto/response/task/TaskResponse.kt @@ -14,5 +14,6 @@ data class TaskResponse( val readFeedback: Boolean, val hasFeedback: Boolean, val hasWorksheet: Boolean, - val hasProofShot: Boolean + val hasProofShot: Boolean, + val isResources: Boolean ) diff --git a/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt b/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt index 643a340..1c2747a 100644 --- a/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt +++ b/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt @@ -20,7 +20,8 @@ class TaskMapper { readFeedback = task.hasReadAllFeedbacks(), hasFeedback = task.hasFeedback(), hasWorksheet = task.hasWorkSheet(), - hasProofShot = task.hasProofShot() + hasProofShot = task.hasProofShot(), + isResources = task.isResource ) }