chore: renamed an enum

This commit is contained in:
Mir Arif Hasan
2023-12-11 18:31:34 +06:00
parent 7da5063a8c
commit 99d369fc79
4 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
import { Field, ObjectType, registerEnumType } from '@nestjs/graphql';
import { AuthProvider } from 'src/auth/helper';
import { InfraConfigEnumForClient } from 'src/types/InfraConfig';
import { AuthProviderStatus } from './helper';
import { ServiceStatus } from './helper';
@ObjectType()
export class InfraConfig {
@@ -24,6 +24,6 @@ registerEnumType(AuthProvider, {
name: 'AuthProvider',
});
registerEnumType(AuthProviderStatus, {
name: 'AuthProviderStatus',
registerEnumType(ServiceStatus, {
name: 'ServiceStatus',
});