nnjeim / world

A Laravel package which provides a list of the countries, states, cities, currencies, timezones and languages.
MIT License
737 stars 104 forks source link

Think about add limit parameter to your API points #51

Closed EntroSolutions closed 1 year ago

EntroSolutions commented 1 year ago

Think about adding limit parameter to your API points or maybe I cant find how to add limit?

nnjeim commented 1 year ago

@EntroSolutions

Hi are you referring to the rate limit?

Please check the routes file

Route::group([
    'prefix' => '{prefix?}',
    'middleware' => [
        'throttle:60,1',
        Localization::class,
    ],
], function () {
nnjeim commented 1 year ago

closed by lack of activity