chore: fix

This commit is contained in:
2026-03-07 22:42:14 +01:00
parent 916d2a30ad
commit b0061cec8a
6 changed files with 203 additions and 43 deletions
+5
View File
@@ -663,10 +663,15 @@ export const deleteCategoryAdmin = async (
export interface AppSettings {
penalties_enabled: boolean;
show_amende_score: boolean;
points_enabled: boolean;
points_categories_weed: string[];
points_categories_zipette: string[];
points_separated: boolean;
points_weed_threshold_price: number;
points_weed_per_threshold: number;
points_zipette_threshold_price: number;
points_zipette_per_threshold: number;
}
export const getSettings = async (): Promise<{ success: boolean; settings?: AppSettings; error?: string }> => {