Files
chatwoot/app/javascript/dashboard/modules/search/search.routes.js
T
2024-08-27 14:09:15 +05:30

15 lines
322 B
JavaScript

import { frontendURL } from '../../helper/URLHelper';
const SearchView = () => import('./components/SearchView.vue');
export const routes = [
{
path: frontendURL('accounts/:accountId/search'),
name: 'search',
meta: {
permissions: ['administrator', 'agent'],
},
component: SearchView,
},
];