Skip to content

Commit 7ae11c6

Browse files
committed
Feat: 반복 루틴 단일 삭제 관련 Intent 추가
1 parent 55db036 commit 7ae11c6

File tree

1 file changed

+3
-0
lines changed
  • presentation/src/main/java/com/threegap/bitnagil/presentation/home/model

1 file changed

+3
-0
lines changed

presentation/src/main/java/com/threegap/bitnagil/presentation/home/model/HomeIntent.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ sealed class HomeIntent : MviIntent {
1313
data class DeleteRoutineOptimistically(val routineId: String) : HomeIntent()
1414
data class ConfirmRoutineDeletion(val routineId: String) : HomeIntent()
1515
data class RestoreRoutinesAfterDeleteFailure(val backupRoutines: RoutinesUiModel) : HomeIntent()
16+
data class DeleteRoutineByDayOptimistically(val routineId: String, val performedDate: String) : HomeIntent()
17+
data class ConfirmRoutineByDayDeletion(val routineId: String, val performedDate: String) : HomeIntent()
18+
data class RestoreRoutinesAfterDeleteByDayFailure(val backupRoutines: RoutinesUiModel) : HomeIntent()
1619
data class ShowRoutineDetailsBottomSheet(val routine: RoutineUiModel) : HomeIntent()
1720
data class ShowDeleteConfirmDialog(val routine: RoutineUiModel) : HomeIntent()
1821
data object OnPreviousWeekClick : HomeIntent()

0 commit comments

Comments
 (0)