* feat: restart cmd added in aio service * feat: nestjs config package added * test: fix all broken test case * feat: infra config module add with get-update-reset functionality * test: fix test case failure * feat: update infra configs mutation added * feat: utilise ConfigService in util functions * chore: remove saml stuff * feat: removed saml stuffs * fix: config service precedence * fix: mailer module init with right env value * feat: added mutations and query * feat: add query infra-configs * fix: mailer module init issue * chore: smtp url validation added * fix: all sso disabling is handled * fix: pnpm i without db connection * fix: allowedAuthProviders and enableAndDisableSSO * fix: validateSMTPUrl check * feat: get api added for fetch provider list * feat: feedback resolve * chore: update code comments * fix: uppercase issue of VITE_ALLOWED_AUTH_PROVIDERS * chore: update lockfile * fix: add validation checks for MAILER_ADDRESS_FROM * test: fix test case * chore: feedback resolve * chore: renamed an enum * chore: app shutdown way changed --------- Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AdminResolver } from './admin.resolver';
|
|
import { AdminService } from './admin.service';
|
|
import { PrismaModule } from '../prisma/prisma.module';
|
|
import { PubSubModule } from '../pubsub/pubsub.module';
|
|
import { UserModule } from '../user/user.module';
|
|
import { TeamModule } from '../team/team.module';
|
|
import { TeamInvitationModule } from '../team-invitation/team-invitation.module';
|
|
import { TeamEnvironmentsModule } from '../team-environments/team-environments.module';
|
|
import { TeamCollectionModule } from '../team-collection/team-collection.module';
|
|
import { TeamRequestModule } from '../team-request/team-request.module';
|
|
import { InfraResolver } from './infra.resolver';
|
|
import { ShortcodeModule } from 'src/shortcode/shortcode.module';
|
|
import { InfraConfigModule } from 'src/infra-config/infra-config.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
PrismaModule,
|
|
PubSubModule,
|
|
UserModule,
|
|
TeamModule,
|
|
TeamInvitationModule,
|
|
TeamEnvironmentsModule,
|
|
TeamCollectionModule,
|
|
TeamRequestModule,
|
|
ShortcodeModule,
|
|
InfraConfigModule,
|
|
],
|
|
providers: [InfraResolver, AdminResolver, AdminService],
|
|
exports: [AdminService],
|
|
})
|
|
export class AdminModule {}
|