frontend phase 15

This commit is contained in:
hamid
2026-07-10 20:28:06 +03:30
parent bc51cf59b4
commit 70cf00ce4a
151 changed files with 10711 additions and 44 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* Admin domain barrel — re-exports **hooks only** (per the `services/{domain}` convention). Import
* types/keys/apis directly from their files when needed (e.g. `import type { PlatformConfig } from
* '@/services/admin/types'`).
*/
export { usePlatformConfigs } from './hooks/usePlatformConfigs';
export { useUpdatePlatformConfig } from './hooks/useUpdatePlatformConfig';
export { useConfigChangeHistory } from './hooks/useConfigChangeHistory';
export { useHolidays } from './hooks/useHolidays';
export { useUpsertHoliday } from './hooks/useUpsertHoliday';
export { useAuditLogs } from './hooks/useAuditLogs';
export { useSupportAlerts } from './hooks/useSupportAlerts';
export { useAssignSupportAlert } from './hooks/useAssignSupportAlert';
export { useResolveSupportAlert } from './hooks/useResolveSupportAlert';
export { useAdminRoles } from './hooks/useAdminRoles';
export { useGrantRole } from './hooks/useGrantRole';
export { useRevokeRole } from './hooks/useRevokeRole';