Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
/* eslint arrow-body-style: 0 */
|
|
import ContactsView from './components/ContactsView';
|
|
import { frontendURL } from '../../../helper/URLHelper';
|
|
|
|
export const routes = [
|
|
{
|
|
path: frontendURL('accounts/:accountId/contacts'),
|
|
name: 'contacts_dashboard',
|
|
roles: ['administrator', 'agent'],
|
|
component: ContactsView,
|
|
},
|
|
];
|