diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-04-05 14:40:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-05 14:40:08 +0200 |
commit | c9efb400b429696d1ee5464931f7f62e38edf1d6 (patch) | |
tree | 9c38b0e2b1ea36c45815c9895cfc8ae351dca827 /app/controllers/api | |
parent | eea0cd8fadf55e59829f2b7cd9eb027e569c0a2e (diff) |
Add rate limit for reporting (#13390)
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/v1/reports_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/api/v1/reports_controller.rb b/app/controllers/api/v1/reports_controller.rb index 66c40f6f4..e10083d45 100644 --- a/app/controllers/api/v1/reports_controller.rb +++ b/app/controllers/api/v1/reports_controller.rb @@ -4,6 +4,8 @@ class Api::V1::ReportsController < Api::BaseController before_action -> { doorkeeper_authorize! :write, :'write:reports' }, only: [:create] before_action :require_user! + override_rate_limit_headers :create, family: :reports + def create @report = ReportService.new.call( current_account, |