Files
chatwoot/app/javascript/dashboard/modules/search/search.routes.js
2023-11-21 14:51:05 -08:00

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,
},
];