Files
TaxHacker/models/currencies.ts
2025-05-03 10:23:13 +02:00

39 lines
930 B
TypeScript

import { prisma } from "@/lib/db"
import { Prisma } from "@/prisma/client"
import { cache } from "react"
export const getCurrencies = cache(async (userId: string) => {
return await prisma.currency.findMany({
where: { userId },
orderBy: {
code: "asc",
},
})
})
export const createCurrency = async (userId: string, currency: Prisma.CurrencyCreateInput) => {
return await prisma.currency.create({
data: {
...currency,
user: {
connect: {
id: userId,
},
},
},
})
}
export const updateCurrency = async (userId: string, code: string, currency: Prisma.CurrencyUpdateInput) => {
return await prisma.currency.update({
where: { userId_code: { code, userId } },
data: currency,
})
}
export const deleteCurrency = async (userId: string, code: string) => {
return await prisma.currency.delete({
where: { userId_code: { code, userId } },
})
}