Skip to content

Commit 6bd5107

Browse files
committed
CLAP-153 Fix: 이전 처리자 이름 매핑 삭제
1 parent 551013f commit 6bd5107

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/main/java/clap/server/adapter/inbound/web/dto/task/response/FindTaskHistoryResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ public static record Details(
2525
) {}
2626

2727
public static record ProcessorChanged(
28-
String previousProcessor,
29-
String currentProcessor
28+
String processorName
3029
) {}
3130

3231
public static record TaskStatusSwitched(

src/main/java/clap/server/application/mapper/TaskHistoryMapper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public static FindTaskHistoryResponse toFindTaskHistoryResponse(List<TaskHistory
2121
switch (taskHistory.getType()) {
2222
case PROCESSOR_CHANGED, PROCESSOR_ASSIGNED -> new FindTaskHistoryResponse.Details(
2323
new FindTaskHistoryResponse.ProcessorChanged(
24-
null, //TODO: 이전 처리자 이름 검토
2524
taskHistory.getTaskModificationInfo().getModifiedMember().getNickname()
2625
),
2726
null,

0 commit comments

Comments
 (0)