refactor: authentication module to nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-03-29 22:29:12 +02:00
parent 173610d0fa
commit 85946d3161
27 changed files with 604 additions and 35 deletions

View File

@@ -8,6 +8,8 @@ import s3 from './s3';
import openExchange from './open-exchange';
import posthog from './posthog';
import stripePayment from './stripe-payment';
import signupConfirmation from './signup-confirmation';
import signupRestrictions from './signup-restrictions';
export const config = [
systemDatabase,
@@ -20,4 +22,6 @@ export const config = [
openExchange,
posthog,
stripePayment,
signupConfirmation,
signupRestrictions,
];