aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/overview/overview.routes.ts
blob: 72d6835d7190ae14943b0bf349e993111e103785 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { Routes } from '@angular/router'
import { commentRoutes } from './comments'
import { usersRoutes } from './users'
import { videosRoutes } from './videos'

export const OverviewRoutes: Routes = [
  ...commentRoutes,
  ...usersRoutes,
  ...videosRoutes
]