feat(#194): module Cartes SYSTEM
Closes #194 Co-authored-by: Julien Martin <julien.martin@ptits-pas.fr>
This commit was merged in pull request #203.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { AbsencesGardeModule } from '../absences-garde';
|
||||
import { CardType } from 'src/entities/card_types.entity';
|
||||
import { CardInstance } from 'src/entities/card_instances.entity';
|
||||
import { CardAudienceMember } from 'src/entities/card_audience_members.entity';
|
||||
import { CardResponse } from 'src/entities/card_responses.entity';
|
||||
import { AmChildren } from 'src/entities/am_children.entity';
|
||||
import { ParentsChildren } from 'src/entities/parents_children.entity';
|
||||
import { CardsController } from './cards.controller';
|
||||
import { CardsService } from './cards.service';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
AbsencesGardeModule,
|
||||
TypeOrmModule.forFeature([
|
||||
CardType,
|
||||
CardInstance,
|
||||
CardAudienceMember,
|
||||
CardResponse,
|
||||
AmChildren,
|
||||
ParentsChildren,
|
||||
]),
|
||||
],
|
||||
controllers: [CardsController],
|
||||
providers: [CardsService],
|
||||
exports: [CardsService],
|
||||
})
|
||||
export class CardsModule {}
|
||||
Reference in New Issue
Block a user