diff options
author | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-12 18:34:39 +0200 |
---|---|---|
committer | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-12 18:35:08 +0200 |
commit | 8e70fdea8955b0b9f87ecede4571af2ec9454511 (patch) | |
tree | 903e14d48cb5f15f6e5539913a821f38b1ccba07 /frontend/src/app/app-routing.module.ts | |
parent | dbcd20da023b1d035dc2370f554502f65044c30d (diff) |
Razdvojio eksperiment stranu na dodaj eksperiment i treniraj model.
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
-rw-r--r-- | frontend/src/app/app-routing.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index 93431397..54c29531 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -13,11 +13,13 @@ import { ProfileComponent } from './_pages/profile/profile.component'; import { PredictComponent } from './_pages/predict/predict.component'; import { FilterDatasetsComponent } from './_pages/filter-datasets/filter-datasets.component'; import { ExperimentComponent } from './experiment/experiment.component'; +import { TrainingComponent } from './training/training.component'; const routes: Routes = [ { path: '', component: HomeComponent, data: { title: 'Početna strana' } }, /*{ path: 'add-model', component: AddModelComponent, data: { title: 'Dodaj model' } },*/ - { path: 'experiment', component: ExperimentComponent, data: { title: 'Dodaj model' } }, + { path: 'experiment', component: ExperimentComponent, data: { title: 'Dodaj eksperiment' } }, + { path: 'training', component: TrainingComponent, data: { title: 'Treniraj model' } }, { path: 'my-datasets', component: MyDatasetsComponent, canActivate: [AuthGuardService], data: { title: 'Moji izvori podataka' } }, { path: 'my-models', component: MyModelsComponent, canActivate: [AuthGuardService], data: { title: 'Moji modeli' } }, { path: 'my-predictors', component: MyPredictorsComponent, canActivate: [AuthGuardService], data: { title: 'Moji trenirani modeli' } }, |