fix: unblock ci audit checks
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { OsmSyncStatus } from '@prisma/client';
|
||||
import { spawn } from 'node:child_process';
|
||||
import { createHash } from 'node:crypto';
|
||||
import * as path from 'node:path';
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { OsmSyncStatus } from '@prisma/client';
|
||||
import { LoggerService, PrismaService } from '@modules/shared';
|
||||
|
||||
/**
|
||||
|
||||
@@ -25,6 +25,7 @@ import { PaymentGatewayFactory } from './infrastructure/services/payment-gateway
|
||||
import { PAYMENT_GATEWAY_FACTORY } from './infrastructure/services/payment-gateway.interface';
|
||||
import { VnpayService } from './infrastructure/services/vnpay.service';
|
||||
import { ZalopayService } from './infrastructure/services/zalopay.service';
|
||||
import { AdminPaymentsController } from './presentation/controllers/admin-payments.controller';
|
||||
import { OrdersController } from './presentation/controllers/orders.controller';
|
||||
import { PaymentsController } from './presentation/controllers/payments.controller';
|
||||
|
||||
@@ -47,7 +48,7 @@ const QueryHandlers = [
|
||||
|
||||
@Module({
|
||||
imports: [CqrsModule],
|
||||
controllers: [OrdersController, PaymentsController],
|
||||
controllers: [AdminPaymentsController, OrdersController, PaymentsController],
|
||||
providers: [
|
||||
// Repositories
|
||||
{ provide: ESCROW_REPOSITORY, useClass: PrismaEscrowRepository },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { QueryHandler, type IQueryHandler } from '@nestjs/cqrs';
|
||||
import { LoggerService, PrismaService } from '@modules/shared';
|
||||
import type { Feature, FeatureCollection } from 'geojson';
|
||||
import { LoggerService, PrismaService } from '@modules/shared';
|
||||
import { ListPoiByBboxQuery } from './list-poi-by-bbox.query';
|
||||
|
||||
interface BboxRow {
|
||||
|
||||
@@ -17,8 +17,8 @@ import {
|
||||
// import { EVENT_BUS, RedisStreamsEventBus } from './infrastructure/event-bus';
|
||||
import { EventBusService } from './infrastructure/event-bus.service';
|
||||
import { FieldEncryptionService } from './infrastructure/field-encryption.service';
|
||||
import { GeoLookupService } from './infrastructure/geo-lookup.service';
|
||||
import { GlobalExceptionFilter } from './infrastructure/filters/global-exception.filter';
|
||||
import { GeoLookupService } from './infrastructure/geo-lookup.service';
|
||||
import { DeprecationInterceptor, VersionInterceptor } from './infrastructure/interceptors';
|
||||
import { LoggerService } from './infrastructure/logger.service';
|
||||
import { CorrelationIdMiddleware } from './infrastructure/middleware/correlation-id.middleware';
|
||||
|
||||
Reference in New Issue
Block a user