From c205e93876c5c4c02d8c728401b4f75938e3c2e3 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 15 Dec 2024 19:51:46 +0100 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/7288 --- app/Api/V1/Controllers/Search/AccountController.php | 2 +- routes/web.php | 10 ++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/app/Api/V1/Controllers/Search/AccountController.php b/app/Api/V1/Controllers/Search/AccountController.php index 98204fcef7..d0c1ffa435 100644 --- a/app/Api/V1/Controllers/Search/AccountController.php +++ b/app/Api/V1/Controllers/Search/AccountController.php @@ -62,7 +62,6 @@ class AccountController extends Controller */ public function search(Request $request): JsonResponse|Response { - app('log')->debug('Now in account search()'); $manager = $this->getManager(); $query = trim((string)$request->get('query')); $field = trim((string)$request->get('field')); @@ -70,6 +69,7 @@ class AccountController extends Controller if ('' === $query || !in_array($field, $this->validFields, true)) { return response(null, 422); } + app('log')->debug(sprintf('Now in account search("%s", "%s")', $field, $query)); $types = $this->mapAccountTypes($type); /** @var AccountSearch $search */ diff --git a/routes/web.php b/routes/web.php index 659726d09d..7334c316cf 100644 --- a/routes/web.php +++ b/routes/web.php @@ -284,19 +284,13 @@ Route::group( Route::get('show/{budget}', ['uses' => 'Budget\ShowController@show', 'as' => 'show']); Route::get('show/{budget}/{budgetLimit}', ['uses' => 'Budget\ShowController@showByBudgetLimit', 'as' => 'show.limit']); Route::get('list/no-budget/all', ['uses' => 'Budget\ShowController@noBudgetAll', 'as' => 'no-budget-all']); - Route::get('list/no-budget/{start_date?}/{end_date?}', ['uses' => 'Budget\ShowController@noBudget', 'as' => 'no-budget']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]) - ; + Route::get('list/no-budget/{start_date?}/{end_date?}', ['uses' => 'Budget\ShowController@noBudget', 'as' => 'no-budget']); // reorder budgets Route::post('reorder', ['uses' => 'Budget\IndexController@reorder', 'as' => 'reorder']); // index - Route::get('{start_date?}/{end_date?}', ['uses' => 'Budget\IndexController@index', 'as' => 'index']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]) - ; + Route::get('{start_date?}/{end_date?}', ['uses' => 'Budget\IndexController@index', 'as' => 'index']); } );