mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-27 00:23:56 +00:00
14 lines
342 B
JavaScript
14 lines
342 B
JavaScript
/* eslint-disable storybook/default-exports */
|
|
import { frontendURL } from '../../helper/URLHelper';
|
|
|
|
const SearchView = () => import('./components/SearchView.vue');
|
|
|
|
export const routes = [
|
|
{
|
|
path: frontendURL('accounts/:accountId/search'),
|
|
name: 'search',
|
|
roles: ['administrator', 'agent'],
|
|
component: SearchView,
|
|
},
|
|
];
|