| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { Route } from '@angular/router';
- import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker';
- import { AppShellComponent, AuthGuard } from '@vendure/admin-ui/core';
- export const routes: Route[] = [
- { path: 'login', loadChildren: () => import('@vendure/admin-ui/login').then(m => m.LoginModule) },
- {
- path: '',
- canActivate: [AuthGuard],
- component: AppShellComponent,
- data: {
- breadcrumb: _('breadcrumb.dashboard'),
- },
- children: [
- {
- path: '',
- pathMatch: 'full',
- loadChildren: () => import('@vendure/admin-ui/dashboard').then(m => m.DashboardModule),
- },
- {
- path: 'catalog',
- loadChildren: () => import('@vendure/admin-ui/catalog').then(m => m.CatalogModule),
- },
- {
- path: 'customer',
- loadChildren: () => import('@vendure/admin-ui/customer').then(m => m.CustomerModule),
- },
- {
- path: 'orders',
- loadChildren: () => import('@vendure/admin-ui/order').then(m => m.OrderModule),
- },
- {
- path: 'marketing',
- loadChildren: () => import('@vendure/admin-ui/marketing').then(m => m.MarketingModule),
- },
- {
- path: 'settings',
- loadChildren: () => import('@vendure/admin-ui/settings').then(m => m.SettingsModule),
- },
- {
- path: 'system',
- loadChildren: () => import('@vendure/admin-ui/system').then(m => m.SystemModule),
- },
- ],
- },
- ];
|