11 lines
244 B
TypeScript
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;
|
|
}
|