summaryrefslogtreecommitdiffstats
path: root/public/src/app/app-routing.module.ts
blob: c58d9ca7a65c7c1dc524393a391235431a0c13de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

import { HomeComponent } from './home/home.component';
import { MainComponent } from './main/main.component';

const routes: Routes = [
  {
    path: '',
    redirectTo: '/home',
    pathMatch: 'full'
  },
  {
    path: 'home',
    component: HomeComponent
  },
  {
    path: 'main/:contextType/:uuid/:version/:mcid',
    component: MainComponent
  },
  {
    path: 'main/:contextType/:uuid/:version/:mcid/:submitted',
    component: MainComponent
  }
];

@NgModule({
  imports: [RouterModule.forRoot(routes, { useHash: true })],
  exports: [RouterModule]
})
export class AppRoutingModule {}