From 89cb85855efe9237d46fa7b6b8d8eb0dd7cf6134 Mon Sep 17 00:00:00 2001 From: "Kim, Joon" Date: Tue, 10 Feb 2026 23:19:43 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=86=8D=EC=84=B1=EB=AA=85=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bllsoneshot/task/dto/response/task/TaskResponse.kt | 2 +- src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt | 2 +- 2 files changed, 2 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 ae95a81..19fede5 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 @@ -15,5 +15,5 @@ data class TaskResponse( val hasFeedback: Boolean, val hasWorksheet: Boolean, val hasProofShot: Boolean, - val isResources: Boolean + val isResource: Boolean ) diff --git a/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt b/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt index 1c2747a..06f69c6 100644 --- a/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt +++ b/src/main/kotlin/goodspace/bllsoneshot/task/mapper/TaskMapper.kt @@ -21,7 +21,7 @@ class TaskMapper { hasFeedback = task.hasFeedback(), hasWorksheet = task.hasWorkSheet(), hasProofShot = task.hasProofShot(), - isResources = task.isResource + isResource = task.isResource ) }