Skip to content
Snippets Groups Projects
Commit a7e71bbd authored by Akihiko Odaki's avatar Akihiko Odaki Committed by Eugen Rochko
Browse files

Add a missing question mark in rack_attack.rb (#7338)

parent b1d4471e
No related branches found
No related tags found
No related merge requests found
......@@ -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|
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment