Extra luggage, tourism package, manage my trip and other updates

This commit is contained in:
Stephanos A
2026-06-23 19:45:15 +03:00
parent 2bd76756a4
commit e25066d6d5
26 changed files with 2374 additions and 411 deletions

View File

@@ -373,3 +373,9 @@ export const reportsApi = {
return response?.data ? (Array.isArray(response.data) ? { items: response.data } : response) : { items: [] };
},
};
// System Config API
export const systemConfigApi = {
getAll: () => apiClient.get<Record<string, string>>('/system-config'),
update: (data: Record<string, string>) => apiClient.patch<Record<string, string>>('/system-config', data),
};