feat: refactor custom object (#1887)
* chore: drop old universal entity * feat: wip refactor graphql generation custom object * feat: refactor custom object resolvers fix: tests fix: import --------- Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
13
server/src/tenant/schema-builder/schema-builder.module.ts
Normal file
13
server/src/tenant/schema-builder/schema-builder.module.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
|
||||
import { EntityResolverModule } from 'src/tenant/entity-resolver/entity-resolver.module';
|
||||
import { JwtAuthGuard } from 'src/guards/jwt.auth.guard';
|
||||
|
||||
import { SchemaBuilderService } from './schema-builder.service';
|
||||
|
||||
@Module({
|
||||
imports: [EntityResolverModule],
|
||||
providers: [SchemaBuilderService, JwtAuthGuard],
|
||||
exports: [SchemaBuilderService],
|
||||
})
|
||||
export class SchemaBuilderModule {}
|
||||
Reference in New Issue
Block a user