Make deleting / unboosting slightly less strict as well

This commit is contained in:
Jeremy Kescher 2022-11-12 14:43:21 +01:00
parent c40b063bd4
commit 92ff7b0e3e
No known key found for this signature in database
GPG key ID: 48DFE4BB15BA5940

View file

@ -77,7 +77,7 @@ class Rack::Attack
API_DELETE_REBLOG_REGEX = /\A\/api\/v1\/statuses\/[\d]+\/unreblog/.freeze
API_DELETE_STATUS_REGEX = /\A\/api\/v1\/statuses\/[\d]+/.freeze
throttle('throttle_api_delete', limit: 30, period: 5.minutes) do |req|
throttle('throttle_api_delete', limit: 60, period: 5.minutes) do |req|
req.authenticated_user_id if (req.post? && req.path.match?(API_DELETE_REBLOG_REGEX)) || (req.delete? && req.path.match?(API_DELETE_STATUS_REGEX))
end