Merge branch 'develop' into draft-import-resources

This commit is contained in:
Ahmed Bouhuolia
2024-03-10 14:54:32 +02:00
740 changed files with 22505 additions and 4723 deletions

View File

@@ -62,6 +62,8 @@ import TaxRate from 'models/TaxRate';
import TaxRateTransaction from 'models/TaxRateTransaction';
import Attachment from 'models/Attachment';
import Import from 'models/Import';
import PlaidItem from 'models/PlaidItem';
import UncategorizedCashflowTransaction from 'models/UncategorizedCashflowTransaction';
export default (knex) => {
const models = {
@@ -126,7 +128,9 @@ export default (knex) => {
TaxRate,
TaxRateTransaction,
Attachment,
Import
Import,
PlaidItem,
UncategorizedCashflowTransaction
};
return mapValues(models, (model) => model.bindKnex(knex));
};