add approve or reject mentor

This commit is contained in:
2024-10-28 16:47:30 +07:00
parent 4d0a6136d6
commit d86e7cb667
5 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Inject, Injectable } from '@nestjs/common';
import { PothosSchema, SchemaBuilderToken } from '@smatch-corp/nestjs-pothos';
import { Builder } from 'src/Graphql/graphql.builder';
@Injectable()
export class AppConfigSchema extends PothosSchema {
constructor(@Inject(SchemaBuilderToken) private readonly builder: Builder) {
super();
}
}