forked from wangziqi/gongxue-base
20 lines
843 B
TypeScript
20 lines
843 B
TypeScript
import { Module, OnModuleInit, forwardRef } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { Permission, Role, User, Class, ClassStudent, ClassTeacher, ClassSchedule, Student, StudentDingMapping } from '../entities';
|
|
import { RbacService } from './rbac.service';
|
|
import { RbacController } from './rbac.controller';
|
|
import { AuthModule } from '../auth/auth.module';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([Permission, Role, User, Class, ClassStudent, ClassTeacher, ClassSchedule, Student, StudentDingMapping]), forwardRef(() => AuthModule)],
|
|
controllers: [RbacController],
|
|
providers: [RbacService],
|
|
exports: [RbacService],
|
|
})
|
|
export class RbacModule implements OnModuleInit {
|
|
constructor(private rbacService: RbacService) {}
|
|
async onModuleInit() {
|
|
await this.rbacService.seedData();
|
|
}
|
|
}
|