aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorDESKTOP-S0O2C44\ROG <ivan996sk@gmail.com>2022-03-30 23:55:24 +0200
committerDESKTOP-S0O2C44\ROG <ivan996sk@gmail.com>2022-03-30 23:55:24 +0200
commit317071919945434f1186ce908f0295ec180c178e (patch)
treee94f5c624bdd81c3f0f5cab65392a0085c8dd1da /frontend/src/app/app-routing.module.ts
parent39fc1f0cc9871b4436b839acb6ce4260e6c33931 (diff)
Odradjena predict stranica i poslati inputi na back (post - usePredictor) #53 #66
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
-rw-r--r--frontend/src/app/app-routing.module.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts
index 1c368318..fd827ac9 100644
--- a/frontend/src/app/app-routing.module.ts
+++ b/frontend/src/app/app-routing.module.ts
@@ -24,7 +24,7 @@ const routes: Routes = [
{ path: 'profile', component: ProfileComponent, canActivate: [AuthGuardService], data: { title: 'Profil' } },
{ path: 'browse-datasets', component: FilterDatasetsComponent, data: { title: 'Javni izvori podataka' } },
{ path: 'browse-predictors', component: BrowsePredictorsComponent, data: { title: 'Javni trenirani modeli' } },
- { path: 'predict', component: PredictComponent, data: { title: 'Predvidi vrednosti' } }
+ { path: 'predict/:id', component: PredictComponent, data: { title: 'Predvidi vrednosti' } }
];
@NgModule({