refactor: organization service to nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-03-25 04:34:22 +02:00
parent ef22b9ddaf
commit 92d98ce1d3
31 changed files with 1006 additions and 423 deletions

View File

@@ -5,10 +5,12 @@ import { PaymentLinksApplication } from './PaymentLinksApplication';
import { PaymentLinksController } from './PaymentLinks.controller';
import { InjectSystemModel } from '../System/SystemModels/SystemModels.module';
import { PaymentLink } from './models/PaymentLink';
import { StripePaymentModule } from '../StripePayment/StripePayment.module';
const models = [InjectSystemModel(PaymentLink)];
@Module({
imports: [StripePaymentModule],
providers: [
...models,
CreateInvoiceCheckoutSession,