aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-06-06 04:21:57 +0200
committerSonja Galovic <galovicsonja@gmail.com>2022-06-06 04:21:57 +0200
commita5dedce9016f75de00954f02cdaf865a66454220 (patch)
tree9f8c4dd85c367fdd63af75dfb34b1a7a9e1ba5db /frontend/src/app/app-routing.module.ts
parent2b5200bc9d3c55ca2d3f44c7dda23568125540ff (diff)
parent67151f6cc5fcb9a66fc08a181eb8e1a6acaca733 (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.ts4
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: '' }
];