You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: features/feature_change_record/src/main/java/com/example/util/simpletimetracker/feature_change_record/mapper/ChangeRecordActionsDelegateMapper.kt
Copy file name to clipboardexpand all lines: features/feature_change_record/src/main/java/com/example/util/simpletimetracker/feature_change_record/mapper/ChangeRecordViewDataMapper.kt
+1
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,7 @@ class ChangeRecordViewDataMapper @Inject constructor(
Copy file name to clipboardexpand all lines: features/feature_change_record/src/main/java/com/example/util/simpletimetracker/feature_change_record/model/ChangeRecordActionsBlock.kt
+1
Original file line number
Diff line number
Diff line change
@@ -13,5 +13,6 @@ enum class ChangeRecordActionsBlock {
Copy file name to clipboardexpand all lines: features/feature_change_record/src/main/java/com/example/util/simpletimetracker/feature_change_record/viewModel/ChangeRecordActionsDelegate.kt
Copy file name to clipboardexpand all lines: features/feature_change_record/src/main/java/com/example/util/simpletimetracker/feature_change_record/viewModel/ChangeRecordActionsDelegateHolder.kt
+12
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ class ChangeRecordActionsDelegateHolder @Inject constructor(
Copy file name to clipboardexpand all lines: features/feature_change_record/src/main/java/com/example/util/simpletimetracker/feature_change_record/viewModel/ChangeRecordActionsDelegateImpl.kt
Copy file name to clipboardexpand all lines: features/feature_change_record/src/main/java/com/example/util/simpletimetracker/feature_change_record/viewModel/ChangeRecordBaseViewModel.kt
+28-3
Original file line number
Diff line number
Diff line change
@@ -390,6 +390,16 @@ abstract class ChangeRecordBaseViewModel(
Copy file name to clipboardexpand all lines: features/feature_dialogs/src/main/java/com/example/util/simpletimetracker/feature_dialogs/recordQuickActions/interactor/RecordQuickActionsInteractor.kt
+15
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,21 @@ class RecordQuickActionsInteractor @Inject constructor(
100
100
}
101
101
}
102
102
103
+
suspendfunmove(
104
+
params:Type,
105
+
timestamp:Long,
106
+
) {
107
+
val recordId = (params as?Type.RecordTracked)?.id ?:return
108
+
val record = recordInteractor.get(recordId) ?:return
0 commit comments