Skip to content

Commit

Permalink
[mod] #293 UserV2 변경 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
sxunea committed May 14, 2024
1 parent a13084d commit 57b164f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ data class ResponseGetUserDto(
fcmIsAllowed = userData.fcmIsAllowed,
accumulatedAmount = userData.accumulatedAmount,
accumulatedCount = userData.accumulatedCount,
createdDay = userData.createdDday,
createdDday = userData.createdDday,
amountSavedTwoWeeks = userData.amountSavedTwoWeeks,
amountSpentTwoWeeks = userData.amountSpentTwoWeeks,
remainingAmount = userData.remainingAmount,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class DataStoreRepositoryImpl @Inject constructor(
fcmIsAllowed = true,
accumulatedAmount = 0,
accumulatedCount = 0,
amountSavedHundredDays = 0,
createdDday = 0,
amountSavedTwoWeeks = 0,
amountSpentTwoWeeks = 0,
remainingCount = 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data class UserV2(
val fcmIsAllowed: Boolean,
val accumulatedAmount: Int,
val accumulatedCount: Int,
val createdDay: Int,
val createdDday: Int,
val amountSavedTwoWeeks: Int,
val amountSpentTwoWeeks: Int,
val remainingAmount: Int,
Expand Down

0 comments on commit 57b164f

Please sign in to comment.