Reformat
This commit is contained in:
parent
c51ad6a41e
commit
0c65254f4a
|
@ -1,13 +1,19 @@
|
||||||
|
export const updateTimer = async ({
|
||||||
export const updateTimer = async ({ user, breakInterval, miniBreakDuration, longBreakDuration, soundEnabled, notificationsEnabled }) => {
|
user,
|
||||||
await db.timer.update({
|
breakInterval,
|
||||||
where: { user_id: user.id },
|
miniBreakDuration,
|
||||||
data: {
|
longBreakDuration,
|
||||||
breakInterval,
|
soundEnabled,
|
||||||
miniBreakDuration,
|
notificationsEnabled,
|
||||||
longBreakDuration,
|
}) => {
|
||||||
soundEnabled,
|
await db.timer.update({
|
||||||
notificationsEnabled,
|
where: { user_id: user.id },
|
||||||
},
|
data: {
|
||||||
})
|
breakInterval,
|
||||||
}
|
miniBreakDuration,
|
||||||
|
longBreakDuration,
|
||||||
|
soundEnabled,
|
||||||
|
notificationsEnabled,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
@ -48,5 +48,5 @@ export const actions = {
|
||||||
notificationsEnabled,
|
notificationsEnabled,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue