diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-06-06 04:21:57 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-06-06 04:21:57 +0200 |
commit | a5dedce9016f75de00954f02cdaf865a66454220 (patch) | |
tree | 9f8c4dd85c367fdd63af75dfb34b1a7a9e1ba5db /frontend/src/app/app-routing.module.ts | |
parent | 2b5200bc9d3c55ca2d3f44c7dda23568125540ff (diff) | |
parent | 67151f6cc5fcb9a66fc08a181eb8e1a6acaca733 (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
-rw-r--r-- | frontend/src/app/app-routing.module.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index 507089a8..fa53d5f0 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -9,6 +9,8 @@ import { ExperimentComponent } from './_pages/experiment/experiment.component'; import { ArchiveComponent } from './_pages/archive/archive.component'; import { ColumnTableComponent } from './_elements/column-table/column-table.component'; import { TestComponent } from './_pages/test/test.component'; +import { PageDatasetComponent } from './_pages/page-dataset/page-dataset.component'; +import { PageModelComponent } from './_pages/page-model/page-model.component'; const routes: Routes = [ { path: '', component: HomeComponent, data: { title: 'Početna strana' } }, @@ -19,6 +21,8 @@ const routes: Routes = [ { path: 'profile', component: ProfileComponent, canActivate: [AuthGuardService], data: { title: 'Profil' } }, { path: 'playground', component: PlaygroundComponent, data: { title: 'Zabava' } }, { path: 'test', component: TestComponent, data: { title: 'Test' } }, + { path: 'dataset/:id', component: PageDatasetComponent, data: { title: 'Izvor podataka' } }, + { path: 'model/:id', component: PageModelComponent, data: { title: 'Konfiguracija neuronske mreže' } }, { path: '**', redirectTo: '' } ]; |