Fix incorrect rate limit on PUT requests (#31356)
This commit is contained in:
parent
63f4a2d1c4
commit
fc77844266
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ class Rack::Attack
|
|||
API_CREATE_EMOJI_REACTION_REGEX = %r{\A/api/v1/statuses/\d+/emoji_reactions}
|
||||
|
||||
throttle('throttle_password_change/account', limit: 10, period: 10.minutes) do |req|
|
||||
req.warden_user_id if (req.put? && !req.path.match?(API_CREATE_EMOJI_REACTION_REGEX)) || (req.patch? && req.path_matches?('/auth'))
|
||||
req.warden_user_id if (req.put? || req.patch?) && (req.path_matches?('/auth') || req.path_matches?('/auth/password'))
|
||||
end
|
||||
|
||||
self.throttled_responder = lambda do |request|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue