feat(backend): Added support for customized learning paths to the database learning path provider.

This commit is contained in:
Gerald Schmittinger 2025-03-11 06:13:29 +01:00
parent 466b9b8d17
commit a69e2625af
7 changed files with 84 additions and 86 deletions

View file

@ -26,6 +26,7 @@ export interface LearningObjectNode {
transitions: Transition[];
created_at: string;
updatedAt: string;
done?: boolean; // true if a submission exists for this node by the user for whom the learning path is customized.
}
export interface LearningPath {