autowp/autowp-frontend

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

Summary

Maintainability
A
1 hr
Test Coverage
import {Routes} from '@angular/router';
 
export const routes: Routes = [
{
loadComponent: () => import('./inbox.component').then((m) => m.InboxComponent),
path: '',
pathMatch: 'full',
title: $localize`Inbox`,
},
Similar blocks of code found in 33 locations. Consider refactoring.
{
loadComponent: () => import('./inbox.component').then((m) => m.InboxComponent),
path: ':brand',
title: $localize`Inbox`,
},
Similar blocks of code found in 33 locations. Consider refactoring.
{
loadComponent: () => import('./inbox.component').then((m) => m.InboxComponent),
path: ':brand/:date',
title: $localize`Inbox`,
},
];