Add a missing question mark in rack_attack.rb (#7338)
This commit is contained in:
parent
b1d4471e36
commit
a7e71bbd08
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class Rack::Attack
|
|||
end
|
||||
|
||||
throttle('throttle_media', limit: 30, period: 30.minutes) do |req|
|
||||
req.authenticated_user_id if req.post? && req.path.start_with('/api/v1/media')
|
||||
req.authenticated_user_id if req.post? && req.path.start_with?('/api/v1/media')
|
||||
end
|
||||
|
||||
throttle('protected_paths', limit: 25, period: 5.minutes) do |req|
|
||||
|
|
Loading…
Reference in a new issue