mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
40 lines
1.7 KiB
JavaScript
40 lines
1.7 KiB
JavaScript
import AccountsAlerts from '../Accounts/AccountsAlerts';
|
|
import ItemsAlerts from '../Items/ItemsAlerts';
|
|
import ItemsCategoriesAlerts from '../ItemsCategories/ItemsCategoriesAlerts';
|
|
import InventoryAdjustmentsAlerts from '../InventoryAdjustments/InventoryAdjustmentsAlerts';
|
|
import EstimatesAlerts from '../Sales/Estimates/EstimatesAlerts';
|
|
import InvoicesAlerts from '../Sales/Invoices/InvoicesAlerts';
|
|
import ReceiptsAlerts from '../Sales/Receipts/ReceiptsAlerts';
|
|
import PaymentReceiveAlerts from '../Sales/PaymentReceives/PaymentReceiveAlerts';
|
|
import BillsAlerts from '../Purchases/Bills/BillsLanding/BillsAlerts';
|
|
import PaymentMadesAlerts from '../Purchases/PaymentMades/PaymentMadesAlerts';
|
|
import CustomersAlerts from '../Customers/CustomersAlerts';
|
|
import VendorsAlerts from '../Vendors/VendorsAlerts';
|
|
import ManualJournalsAlerts from '../Accounting/JournalsLanding/ManualJournalsAlerts';
|
|
import ExchangeRatesAlerts from '../ExchangeRates/ExchangeRatesAlerts';
|
|
import ExpensesAlerts from '../Expenses/ExpensesAlerts';
|
|
import AccountTransactionsAlerts from '../CashFlow/AccountTransactions/AccountTransactionsAlerts';
|
|
import UsersAlerts from '../Preferences/Users/UsersAlerts';
|
|
import CurrenciesAlerts from '../Preferences/Currencies/CurrenciesAlerts';
|
|
|
|
export default [
|
|
...AccountsAlerts,
|
|
...ItemsAlerts,
|
|
...ItemsCategoriesAlerts,
|
|
...InventoryAdjustmentsAlerts,
|
|
...EstimatesAlerts,
|
|
...InvoicesAlerts,
|
|
...ReceiptsAlerts,
|
|
...PaymentReceiveAlerts,
|
|
...BillsAlerts,
|
|
...PaymentMadesAlerts,
|
|
...CustomersAlerts,
|
|
...VendorsAlerts,
|
|
...ManualJournalsAlerts,
|
|
...ExchangeRatesAlerts,
|
|
...ExpensesAlerts,
|
|
...AccountTransactionsAlerts,
|
|
...UsersAlerts,
|
|
...CurrenciesAlerts,
|
|
];
|