autowp/autowp-frontend

View on GitHub
src/app/cars/cars-routing.module.ts

Summary

Maintainability
A
2 hrs
Test Coverage
import {Routes} from '@angular/router';
 
export const routes: Routes = [
Similar blocks of code found in 33 locations. Consider refactoring.
{
loadComponent: () =>
import('./attrs-change-log/attrs-change-log.component').then((m) => m.CarsAttrsChangeLogComponent),
path: 'attrs-change-log',
title: $localize`History`,
},
Similar blocks of code found in 33 locations. Consider refactoring.
{
loadComponent: () => import('./dateless/dateless.component').then((m) => m.CarsDatelessComponent),
path: 'dateless',
title: $localize`Dateless`,
},
{
loadComponent: () =>
import('./specifications-editor/engine/select/select.component').then((m) => m.CarsEngineSelectComponent),
path: 'select-engine',
},
{
loadComponent: () =>
import('./specifications-editor/specifications-editor.component').then(
(m) => m.CarsSpecificationsEditorComponent,
),
path: 'specifications-editor',
},
Similar blocks of code found in 33 locations. Consider refactoring.
{
loadComponent: () => import('./specs-admin/specs-admin.component').then((m) => m.CarsSpecsAdminComponent),
path: 'specs-admin',
title: $localize`Specifications Admin`,
},
];