File tree Expand file tree Collapse file tree
src/main/java/bitnagil/bitnagil_backend/routine Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public interface RoutineSpec {
5757 CustomResponseDto <Object > updateRoutineCompletionStatus (User user ,
5858 UpdateRoutineCompletionRequest updateRoutineCompletionRequest );
5959
60- @ Operation (summary = "선택한 요일(당일)만 루틴을 삭제합니다." )
60+ @ Operation (summary = "유저가 선택한 당일에만 루틴을 삭제합니다." )
6161 @ ApiErrorCodeExamples ({ErrorCode .NOT_FOUND_ROUTINE , ErrorCode .ROUTINE_USER_NOT_MATCHED ,
6262 ErrorCode .NOT_FOUND_CHANGED_ROUTINE , ErrorCode .CHANGED_ROUTINE_USER_NOT_MATCHED })
6363 CustomResponseDto <Object > deleteRoutineByDay (User user , DeleteRoutineByDayRequest deleteRoutineByDayRequest );
Original file line number Diff line number Diff line change @@ -184,10 +184,10 @@ else if (request.getRoutineType() == RoutineType.CHANGED_ROUTINE) {
184184 changedRoutine .updateChangedDivCode (ChangedDivCode .TODAY_DELETE );
185185 }
186186
187- // routineCompletionId에 해당하는 완료 여부 데이터 삭제
187+ // routineCompletionId에 해당하는 루틴 완료 여부 데이터 삭제
188188 deleteRoutineCompletionIfRoutineIdMatches (request .getRoutineCompletionId (), request .getRoutineId ());
189189
190- // routineCompletionId에 해당하는 완료 여부 데이터 삭제
190+ // routineCompletionId에 해당하는 서브 루틴 완료 여부 데이터 삭제
191191 for (SubRoutineInfoForDelete info : request .getSubRoutineInfosForDelete ()) {
192192 deleteRoutineCompletionIfRoutineIdMatches (info .getRoutineCompletionId (), info .getSubRoutineId ());
193193 }
You can’t perform that action at this time.
0 commit comments