WIP feature/Currencies

This commit is contained in:
elforjani3
2020-04-22 19:31:58 +02:00
parent 4e0d3feebe
commit f3d892cdd2
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,
},
];
];