mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
WIP
This commit is contained in:
32
client/src/routes/preferencesTabs.js
Normal file
32
client/src/routes/preferencesTabs.js
Normal file
@@ -0,0 +1,32 @@
|
||||
import AccountsCustomFields from "containers/Dashboard/Preferences/AccountsCustomFields";
|
||||
import UsersList from 'containers/Dashboard/Preferences/UsersList';
|
||||
import RolesList from 'containers/Dashboard/Preferences/RolesList';
|
||||
|
||||
export default {
|
||||
accounts: [
|
||||
{
|
||||
path: '',
|
||||
component: AccountsCustomFields,
|
||||
exact: true,
|
||||
},
|
||||
{
|
||||
name: 'dashboard.preferences.accounts.custom_fields',
|
||||
path: 'custom_fields',
|
||||
component: AccountsCustomFields,
|
||||
exact: true,
|
||||
},
|
||||
],
|
||||
users: [
|
||||
{
|
||||
path: '',
|
||||
component: UsersList,
|
||||
exact: true,
|
||||
},
|
||||
{
|
||||
name: 'dashboard.preferences.users.roles',
|
||||
path: '/roles',
|
||||
component: RolesList,
|
||||
exact: true,
|
||||
},
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user