Files
admin.gaertan.art/src/actions/items/commissions/tos/getTos.ts
2025-07-06 17:27:06 +02:00

11 lines
244 B
TypeScript

'use server';
import prisma from "@/lib/prisma";
export async function getLatestTos(): Promise<string | null> {
const tos = await prisma.termsOfService.findFirst({
orderBy: { createdAt: 'desc' },
});
return tos?.markdown ?? null;
}