chore: user financial

This commit is contained in:
Matin
2025-02-15 10:59:53 +03:30
parent caa968ab4a
commit a13f374031
14 changed files with 246 additions and 19 deletions
+12 -2
View File
@@ -13,10 +13,20 @@ import { UserSetting } from "../settings/entities/user-setting.entity";
import { UserSettingsService } from "../settings/providers/user-settings.service";
import { UserSettingsRepository } from "../settings/repositories/user-settings.repository";
import { WalletsModule } from "../wallets/wallets.module";
import { UserFinancial } from "./entities/user-financial.entity";
import { UserFinancialRepository } from "./repositories/user-financial.repository";
@Module({
imports: [TypeOrmModule.forFeature([User, Role, UserGroup, UserSetting]), WalletsModule],
providers: [UsersService, UserRepository, RoleRepository, UserGroupRepository, UserSettingsRepository, UserSettingsService],
imports: [TypeOrmModule.forFeature([User, Role, UserGroup, UserSetting, UserFinancial]), WalletsModule],
providers: [
UsersService,
UserRepository,
RoleRepository,
UserGroupRepository,
UserSettingsRepository,
UserFinancialRepository,
UserSettingsService,
],
controllers: [UsersController],
exports: [UsersService],
})