aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorTAMARA JERINIC <tamara.jerinic@gmail.com>2022-05-19 17:21:04 +0200
committerTAMARA JERINIC <tamara.jerinic@gmail.com>2022-05-19 17:21:04 +0200
commit03b26d14c16a4551a48fe0d3f5993bec84fa36b1 (patch)
tree92382c46f75f5d54d763ca0674ed7f5095c703fe /frontend/src/app/app-routing.module.ts
parentdce16507a0e8219f1bb04a2ec9a0afad521fac47 (diff)
parent529394dd526811e059dfb5f8f76597ffd90b2fea (diff)
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
# Conflicts: # backend/api/api/appsettings.json
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
-rw-r--r--frontend/src/app/app-routing.module.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts
index 8c60a666..56442842 100644
--- a/frontend/src/app/app-routing.module.ts
+++ b/frontend/src/app/app-routing.module.ts
@@ -18,7 +18,8 @@ const routes: Routes = [
{ path: 'archive', component: ArchiveComponent, data: { title: 'Arhiva' } },
{ path: 'profile', component: ProfileComponent, canActivate: [AuthGuardService], data: { title: 'Profil' } },
{ path: 'playground', component: PlaygroundComponent, data: { title: 'Zabava' } },
- { path: 'test', component: TestComponent, data: { title: 'Test' } }
+ { path: 'test', component: TestComponent, data: { title: 'Test' } },
+ { path: '**', redirectTo: '' }
];
@NgModule({