mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
21 lines
531 B
JavaScript
21 lines
531 B
JavaScript
import VueRouter from 'vue-router';
|
|
|
|
import routes from './routes';
|
|
import AnalyticsHelper from 'dashboard/helper/AnalyticsHelper';
|
|
import { validateRouteAccess } from '../helpers/RouteHelper';
|
|
|
|
export const router = new VueRouter({ mode: 'history', routes });
|
|
|
|
export const initalizeRouter = () => {
|
|
router.beforeEach((to, _, next) => {
|
|
AnalyticsHelper.page(to.name || '', {
|
|
path: to.path,
|
|
name: to.name,
|
|
});
|
|
|
|
return validateRouteAccess(to, next, window.chatwootConfig);
|
|
});
|
|
};
|
|
|
|
export default router;
|