This commit is contained in:
Ahmed Bouhuolia
2020-03-16 00:06:15 +02:00
parent 56701951b7
commit 73711384f6
7925 changed files with 18478 additions and 959 deletions

View File

@@ -0,0 +1,32 @@
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';
const BASE_URL = '/dashboard/preferences';
export default [
{
path: `${BASE_URL}/general`,
name: 'dashboard.preferences.general',
component: General,
exact: true,
},
{
path: `${BASE_URL}/users`,
name: 'dashboard.preferences.users',
component: Users,
exact: true,
},
{
path: `${BASE_URL}/accountant`,
name: 'dashboard.preferences.accountant',
component: Accountant,
exact: true,
},
{
path: `${BASE_URL}/accounts`,
name: 'dashboard.preferences.accounts',
component: Accounts,
},
];