From eec8e7885439efbf0a65d40eb4fdd9a8f2c6ed8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Iv=C3=A1n?= <80365304+Diego-lvan@users.noreply.github.com> Date: Thu, 25 Apr 2024 11:17:37 -0600 Subject: [PATCH] agregando entidad town traduction --- backend/src/town/town.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/town/town.module.ts b/backend/src/town/town.module.ts index 13393bc2..528cfcc3 100644 --- a/backend/src/town/town.module.ts +++ b/backend/src/town/town.module.ts @@ -5,10 +5,11 @@ import { TypeOrmModule } from '@nestjs/typeorm'; import { Town } from './entities/town.entity'; import { StateService } from 'src/state/state.service'; import { State } from 'src/state/entities/state.entity'; +import { TownTraduction } from './entities/town-traduction.entity'; @Module({ controllers: [TownController], providers: [TownService, StateService], - imports: [TypeOrmModule.forFeature([Town, State])], + imports: [TypeOrmModule.forFeature([Town, State, TownTraduction])], }) export class TownModule {} -- GitLab