fix(backend): Imports in oude learning-object-service en learning-path-service aangepast.

This commit is contained in:
Gerald Schmittinger 2025-03-31 16:37:15 +02:00
parent c6ee22ab4d
commit 27b9cdf833
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import {GetEndpoint} from "@/services/api-client/endpoints/get-endpoint.ts";
import type {LearningObject} from "@/services/learning-content/learning-object.ts";
import type {Language} from "@/services/learning-content/language.ts";
import type {LearningObject} from "@/data-objects/learning-object.ts";
import type {Language} from "@/data-objects/language.ts";
import {GetHtmlEndpoint} from "@/services/api-client/endpoints/get-html-endpoint.ts";
const getLearningObjectMetadataEndpoint = new GetEndpoint<{hruid: string}, {language: Language, version: number}, LearningObject>(

View file

@ -1,6 +1,6 @@
import {GetEndpoint} from "@/services/api-client/endpoints/get-endpoint.ts";
import {LearningPath, type LearningPathDTO} from "@/services/learning-content/learning-path.ts";
import type {Language} from "@/services/learning-content/language.ts";
import {LearningPath, type LearningPathDTO} from "@/data-objects/learning-path.ts";
import type {Language} from "@/data-objects/language.ts";
import {single} from "@/utils/response-assertions.ts";
const learningPathEndpoint = new GetEndpoint<