chore: update subproject commit and enhance ServiceFeedback schema
- Updated the subproject commit reference in epess-database to the latest version. - Added Logger to the ServiceFeedback schema for improved logging of arguments during feedback submission. - Modified the Prisma types to include new Quiz and Question entities, enhancing the schema's capabilities and data structure.
This commit is contained in:
8
src/Quiz/quiz.module.ts
Normal file
8
src/Quiz/quiz.module.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { Module } from '@nestjs/common'
|
||||
import { QuizSchema } from './quiz.schema'
|
||||
|
||||
@Module({
|
||||
providers: [QuizSchema],
|
||||
exports: [QuizSchema],
|
||||
})
|
||||
export class QuizModule {}
|
||||
4
src/Quiz/quiz.schema.ts
Normal file
4
src/Quiz/quiz.schema.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import { Injectable } from '@nestjs/common'
|
||||
|
||||
@Injectable()
|
||||
export class QuizSchema {}
|
||||
Reference in New Issue
Block a user