refactor(nestjs): wip

This commit is contained in:
Ahmed Bouhuolia
2025-05-28 21:32:48 +02:00
parent c51347d3ec
commit 66a2261e50
32 changed files with 206 additions and 70 deletions

View File

@@ -1,6 +1,6 @@
import { registerAs } from '@nestjs/config';
export default registerAs('bank-feed', () => ({
export default registerAs('bankfeed', () => ({
enabled:
process.env.BANK_FEED_ENABLED === 'true' ||
process.env.BANK_FEED_ENABLED === 'yes',

View File

@@ -13,6 +13,7 @@ import signupRestrictions from './signup-restrictions';
import jwt from './jwt';
import mail from './mail';
import loops from './loops';
import bankfeed from './bankfeed';
export const config = [
systemDatabase,
@@ -29,5 +30,6 @@ export const config = [
signupRestrictions,
jwt,
mail,
loops
loops,
bankfeed,
];