Files
chatwoot/app/javascript/dashboard/modules/search/search.routes.js
T
2024-05-25 01:16:04 -07:00

21 lines
496 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',
meta: {
permissions: [
'account_manage',
'conversation_manage',
'conversation_participating_manage',
'conversation_unassigned_manage',
],
},
component: SearchView,
},
];