This commit is contained in:
Santiago Lo Coco 2024-05-18 16:32:32 +02:00
parent c51ad6a41e
commit 0c65254f4a
2 changed files with 20 additions and 14 deletions

View File

@ -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,
},
})
}

View File

@ -48,5 +48,5 @@ export const actions = {
notificationsEnabled, notificationsEnabled,
}, },
}) })
} },
} }