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,
period: 3.hours.freeze,
}.freeze,
- media: {
- limit: 30,
- period: 30.minutes.freeze,
+ reports: {
+ limit: 400,
+ period: 24.hours.freeze,
}.freeze,
}.freeze
class Report < ApplicationRecord
include Paginable
+ include RateLimitable
+
+ rate_limit by: :account, family: :reports
belongs_to :account
belongs_to :target_account, class_name: 'Account'