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.
This commit is contained in:
Ümit Tunç
2025-01-20 22:11:51 +03:00
parent 63aa362100
commit df5a21efa7
+1 -1
View File
@@ -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']);