Fix incorrect rate limit on PUT requests (#31356)

This commit is contained in:
Claire 2024-08-09 16:48:05 +02:00
parent d673b6e920
commit 67b38a5d64

View file

@ -138,7 +138,7 @@ class Rack::Attack
end
throttle('throttle_password_change/account', limit: 10, period: 10.minutes) do |req|
req.warden_user_id if req.put? || (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|