feat(goals): Add goal management logic and update module exports for backend functionality

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-25 23:19:57 -07:00
parent b6e65c686e
commit ed4cd582a8
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ import { TypeOrmModule } from '@nestjs/typeorm';
import { Goal } from './entities/goal.entity';
import { GoalsController } from './goals.controller';
import { GoalsService } from './goals.service';
import { DomainsModule } from '@features/domains/backend/domains.module';
import { DomainsModule } from '@projects/career/domains/backend/domains.module';
@Module({
imports: [TypeOrmModule.forFeature([Goal]), DomainsModule],

View file

@ -11,7 +11,7 @@ import { UpdateGoalDto } from './dto/update-goal.dto';
import { UpdateGoalProgressDto } from './dto/update-goal-progress.dto';
import { QueryGoalsDto } from './dto/query-goals.dto';
import { PaginatedResponse } from '@common/pagination.dto';
import { ProjectResolverService } from '@features/projects/backend/project-resolver.service';
import { ProjectResolverService } from '@projects/productivity/projects/backend/project-resolver.service';
interface GoalTree extends Goal {
children: GoalTree[];