Introduce highlights option

This commit is contained in:
2025-06-13 22:47:05 +03:00
parent 6911cfaaa4
commit 7b6369fa0f
6 changed files with 42 additions and 10 deletions

View File

@@ -34,12 +34,14 @@ export const preferences = pgTable("preferences", {
language: string;
units: "Imperial" | "Metric";
tone?: string[];
highlights?: string[];
}>()
.$defaultFn(() => ({
enabled: true,
language: "English",
units: "Metric",
tone: [],
highlights: [],
})),
});