Merge remote-tracking branch 'origin/feature/Currencies'

This commit is contained in:
Ahmed Bouhuolia
2020-04-26 03:09:48 +02:00
13 changed files with 477 additions and 37 deletions

View File

@@ -2,6 +2,7 @@ import General from 'containers/Dashboard/Preferences/General';
import Users from 'containers/Dashboard/Preferences/Users';
import Accountant from 'containers/Dashboard/Preferences/Accountant';
import Accounts from 'containers/Dashboard/Preferences/Accounts';
import CurrenciesList from 'containers/Dashboard/Preferences/CurrenciesList'
const BASE_URL = '/dashboard/preferences';
@@ -18,6 +19,11 @@ export default [
component: Users,
exact: true,
},
{
path: `${BASE_URL}/currencies`,
component: CurrenciesList,
exact: true,
},
{
path: `${BASE_URL}/accountant`,
name: 'dashboard.preferences.accountant',
@@ -29,4 +35,4 @@ export default [
name: 'dashboard.preferences.accounts',
component: Accounts,
},
];
];