fix permissions and teacher attendance workflows
This commit is contained in:
@@ -12,11 +12,28 @@ import { Class } from '../entities/class.entity';
|
||||
import { Deposit } from '../entities/deposit.entity';
|
||||
import { ClassroomRental } from '../entities/classroom-rental.entity';
|
||||
import { ClassTeacher } from '../entities/class-teacher.entity';
|
||||
import { ClassStudent } from '../entities/class-student.entity';
|
||||
import { DashboardService } from './dashboard.service';
|
||||
import { DashboardController } from './dashboard.controller';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Room, Student, Occupancy, Bill, RoomExpense, Classroom, ClassSchedule, AttendanceRecord, Class, Deposit, ClassroomRental, ClassTeacher])],
|
||||
imports: [
|
||||
TypeOrmModule.forFeature([
|
||||
Room,
|
||||
Student,
|
||||
Occupancy,
|
||||
Bill,
|
||||
RoomExpense,
|
||||
Classroom,
|
||||
ClassSchedule,
|
||||
AttendanceRecord,
|
||||
Class,
|
||||
Deposit,
|
||||
ClassroomRental,
|
||||
ClassTeacher,
|
||||
ClassStudent,
|
||||
]),
|
||||
],
|
||||
controllers: [DashboardController],
|
||||
providers: [DashboardService],
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user