Merge pull request #2197 from pixelfed/staging

Update api routes, remove throttle middleware from inbox endpoint
pull/2248/head
daniel 6 years ago committed by GitHub
commit fca90371f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -39,7 +39,6 @@ class Kernel extends HttpKernel
],
'api' => [
'throttle:60,1',
'bindings',
\Barryvdh\Cors\HandleCors::class,
],

@ -2,7 +2,7 @@
use Illuminate\Http\Request;
$middleware = ['auth:api','twofactor','validemail','localization'];
$middleware = ['auth:api','twofactor','validemail','localization', 'throttle:60,1'];
Route::post('/users/{username}/inbox', 'FederationController@userInbox');

Loading…
Cancel
Save