From bf7335928d0208cd284c5d4865c9b33d0c38c057 Mon Sep 17 00:00:00 2001
From: Matthieu Benoist <mbenoist@ausy-group.com>
Date: Tue, 22 Jun 2021 14:49:13 +0200
Subject: [PATCH] add accueil and recherche redirects

---
 src/app/app-routing.module.ts | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index 4b238a0f..6dda611d 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -8,6 +8,14 @@ export const routes: Routes = [
     path: '',
     component: HomeComponent,
   },
+  {
+    path: 'accueil',
+    redirectTo: AppRoutes.root.url,
+  },
+  {
+    path: 'recherche',
+    redirectTo: AppRoutes.datasets.uri,
+  },
   {
     path: '**',
     redirectTo: AppRoutes.page404.uri,
-- 
GitLab