From d774d60a15fe0e06ff443c23e11e9b1ff3df0e42 Mon Sep 17 00:00:00 2001 From: Lars Date: Tue, 5 May 2026 15:06:34 +0200 Subject: [PATCH] feat: add API endpoint for creating training units from framework slots - Introduced a new function `createTrainingUnitFromFrameworkSlot` in the API utility, enhancing the ability to create training units directly from framework slots. - This addition supports improved integration with the training planning features, streamlining the process for users. --- frontend/src/utils/api.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/utils/api.js b/frontend/src/utils/api.js index 1222b0e..77bb78e 100644 --- a/frontend/src/utils/api.js +++ b/frontend/src/utils/api.js @@ -1072,6 +1072,7 @@ export const api = { updateTrainingUnit, deleteTrainingUnit, quickCreateTrainingUnit, + createTrainingUnitFromFrameworkSlot, listTrainingPlanTemplates, getTrainingPlanTemplate, createTrainingPlanTemplate,