From df5a21efa7634cdc5b26776ab8ff76961e45b2b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Mon, 20 Jan 2025 22:11:51 +0300 Subject: [PATCH] Uncomment run-all-fetchs route in API for currency updates - Restored the route for the 'run-all-fetchs' method in the CurrencyController, enabling the endpoint for fetching all currency and gold rates. - This change enhances the API functionality by making the route accessible for clients, improving the overall user experience in managing financial data. --- routes/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api.php b/routes/api.php index c560ee5..07174bc 100644 --- a/routes/api.php +++ b/routes/api.php @@ -10,7 +10,7 @@ use App\Http\Controllers\CurrencyController; |-------------------------------------------------------------------------- */ -//Route::get('/run-all-fetchs', [CurrencyController::class, 'runAllFetchs']); +Route::get('/run-all-fetchs', [CurrencyController::class, 'runAllFetchs']); Route::get('/today.json', [CurrencyController::class, 'getAllRates']);