mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
refactor(nestjs): wip
This commit is contained in:
@@ -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',
|
||||
@@ -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,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user