From 0406f2ebec0d54adfe7df98305296988d3d2cf76 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 25 Mar 2026 23:19:54 -0700 Subject: [PATCH] =?UTF-8?q?feat(training):=20=E2=9C=A8=20Add=20TrainingMov?= =?UTF-8?q?e=20entity=20with=20properties=20for=20tracking=20training=20pr?= =?UTF-8?q?ogress=20and=20movements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- education/training/backend/entities/training-move.entity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/education/training/backend/entities/training-move.entity.ts b/education/training/backend/entities/training-move.entity.ts index 91b293c..8d6916d 100644 --- a/education/training/backend/entities/training-move.entity.ts +++ b/education/training/backend/entities/training-move.entity.ts @@ -1,6 +1,6 @@ import { Column, Entity, Index, JoinColumn, ManyToOne } from 'typeorm'; import { BaseEntity } from '@lilith/typeorm-entities'; -import { Project } from '@features/projects/backend/entities/project.entity'; +import { Project } from '@projects/productivity/projects/backend/entities/project.entity'; @Entity('training_moves') @Index('idx_training_moves_project_id', ['projectId'])