Merge pull request #646 from Attendize/remove-terms-and-conditions-closure

removed terms and conditions route as its not used
This commit is contained in:
Jeremy Quinton 2019-05-29 15:48:05 +02:00 committed by GitHub
commit 77087b67c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 18 deletions

View File

@ -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';
}
]);
});