From fa52b14bb798714554681efa25a5e1563a9e163a Mon Sep 17 00:00:00 2001 From: alextselegidis Date: Thu, 18 Nov 2021 07:12:30 +0100 Subject: [PATCH] The default route should point to the booking controller --- application/config/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/config/routes.php b/application/config/routes.php index beee1025..4c1bbcc1 100644 --- a/application/config/routes.php +++ b/application/config/routes.php @@ -51,7 +51,7 @@ require_once __DIR__ . '/../helpers/routes_helper.php'; -$route['default_controller'] = 'appointments'; +$route['default_controller'] = 'booking'; $route['404_override'] = '';