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 ({ user, breakInterval, miniBreakDuration, longBreakDuration, soundEnabled, notificationsEnabled }) => {
await db.timer.update({
where: { user_id: user.id },
data: {
breakInterval,
miniBreakDuration,
longBreakDuration,
soundEnabled,
notificationsEnabled,
},
})
}
export const updateTimer = async ({
user,
breakInterval,
miniBreakDuration,
longBreakDuration,
soundEnabled,
notificationsEnabled,
}) => {
await db.timer.update({
where: { user_id: user.id },
data: {
breakInterval,
miniBreakDuration,
longBreakDuration,
soundEnabled,
notificationsEnabled,
},
})
}

View File

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