feat(backend): databaseLearningPathProvider.fetchLearningPaths geïmplementeerd

This commit is contained in:
Gerald Schmittinger 2025-03-08 18:10:49 +01:00
parent 0fe42f73b2
commit 02be44fe53
6 changed files with 161 additions and 11 deletions

View file

@ -1,4 +1,5 @@
import {LearningPath, LearningPathResponse} from "../../interfaces/learning-content";
import {Language} from "../../entities/content/language";
/**
* Generic interface for a service which provides access to learning paths from a data source.
@ -7,10 +8,10 @@ export interface LearningPathProvider {
/**
* Fetch the learning paths with the given hruids from the data source.
*/
fetchLearningPaths(hruids: string[], language: string, source: string): Promise<LearningPathResponse>;
fetchLearningPaths(hruids: string[], language: Language, source: string): Promise<LearningPathResponse>;
/**
* Search learning paths in the data source using the given search string.
*/
searchLearningPaths(query: string, language: string): Promise<LearningPath[]>;
searchLearningPaths(query: string, language: Language): Promise<LearningPath[]>;
}