diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-08 23:38:40 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-08 23:38:40 +0100 |
commit | 04b1d70fb48093608cc8084fff82cb319fa0becd (patch) | |
tree | 652bca069ce5fbc97dc061db3c0709c3edd832c0 /frontend/src/app/app-routing.module.ts | |
parent | 3b9e1089b94799ee0c82fb68c71688566ab903c6 (diff) |
Komponenta za ucitavanje i prikaz csv fajla - v1 (probna)
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 1868e56c..af8bc237 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -5,11 +5,13 @@ import { LoginPageComponent } from './_pages/login-page/login-page.component'; import { OnlyAuthorizedComponent } from './_pages/only-authorized/only-authorized.component'; import { RegisterPageComponent } from './_pages/register-page/register-page.component'; import { AuthGuardService } from './_services/auth-guard.service'; +import { DatasetLoadComponent } from './_elements/dataset-load/dataset-load.component'; const routes: Routes = [ { path: 'login', component: LoginPageComponent }, { path: 'register', component: RegisterPageComponent }, - { path: 'only-authorized', component: OnlyAuthorizedComponent, canActivate: [AuthGuardService] } + { path: 'only-authorized', component: OnlyAuthorizedComponent, canActivate: [AuthGuardService] }, + { path: 'proba', component: DatasetLoadComponent} ]; @NgModule({ |