Creación de planes de estudio con polling debido a mandar crear los datos en segundo plano

This commit is contained in:
2026-02-25 17:37:06 -06:00
parent f28804bb5b
commit 4d1f102acb
5 changed files with 534 additions and 373 deletions

View File

@@ -13,6 +13,7 @@ export const qk = {
planesList: (filters: unknown) => ['planes', 'list', filters] as const,
plan: (planId: string) => ['planes', 'detail', planId] as const,
planMaybe: (planId: string) => ['planes', 'detail-maybe', planId] as const,
planLineas: (planId: string) => ['planes', planId, 'lineas'] as const,
planAsignaturas: (planId: string) =>
['planes', planId, 'asignaturas'] as const,