Skip to content

Commit

Permalink
add inventory history module
Browse files Browse the repository at this point in the history
  • Loading branch information
bahram1249 committed Jul 2, 2024
1 parent c326f5b commit a162521
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ import { Module } from '@nestjs/common';
import { SequelizeModule } from '@nestjs/sequelize';
import { ECInventoryHistory } from '@rahino/database/models/ecommerce-eav/ec-inventory-history.entity';
import { InventoryHistoryService } from './inventory-history.service';
import { InventoryHistoryController } from './inventory-history.controller';
import { User } from '@rahino/database/models/core/user.entity';
import { Permission } from '@rahino/database/models/core/permission.entity';

@Module({
imports: [SequelizeModule.forFeature([ECInventoryHistory])],
imports: [SequelizeModule.forFeature([User, Permission, ECInventoryHistory])],
controllers: [InventoryHistoryController],
providers: [InventoryHistoryService],
exports: [InventoryHistoryService],
})
Expand Down

0 comments on commit a162521

Please sign in to comment.