From 039183e4e871e080364a7dbb70195f9b0a5c8d0f Mon Sep 17 00:00:00 2001 From: Jeremy Quinton Date: Wed, 29 May 2019 15:47:09 +0200 Subject: [PATCH] removed terms and conditions route as its not used --- app/Http/routes.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/app/Http/routes.php b/app/Http/routes.php index 39a37f3f..abef3e4f 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -41,16 +41,6 @@ Route::group( 'as' => 'logout', ]); - - Route::get('/terms_and_conditions', [ - 'as' => 'termsAndConditions', - function () { - return 'TODO: add terms and cond'; - } - ]); - - - Route::group(['middleware' => ['installed']], function () { /* @@ -714,13 +704,5 @@ Route::group( 'as' => 'index', 'uses' => 'IndexController@showIndex', ]); - - Route::get('/terms_and_conditions', [ - 'as' => 'termsAndConditions', - function () { - return 'TODO: add terms and cond'; - } - ]); - });