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:
parent
b6e65c686e
commit
ed4cd582a8
2 changed files with 2 additions and 2 deletions
|
|
@ -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],
|
||||
|
|
|
|||
|
|
@ -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[];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue