about summary refs log tree commit diff
path: root/app/lib/rate_limiter.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-04-05 14:40:08 +0200
committerGitHub <noreply@github.com>2020-04-05 14:40:08 +0200
commitc9efb400b429696d1ee5464931f7f62e38edf1d6 (patch)
tree9c38b0e2b1ea36c45815c9895cfc8ae351dca827 /app/lib/rate_limiter.rb
parenteea0cd8fadf55e59829f2b7cd9eb027e569c0a2e (diff)
Add rate limit for reporting (#13390)
Diffstat (limited to 'app/lib/rate_limiter.rb')
-rw-r--r--app/lib/rate_limiter.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/lib/rate_limiter.rb b/app/lib/rate_limiter.rb
index 68dae9add..0e2c9a894 100644
--- a/app/lib/rate_limiter.rb
+++ b/app/lib/rate_limiter.rb
@@ -14,9 +14,9 @@ class RateLimiter
       period: 3.hours.freeze,
     }.freeze,
 
-    media: {
-      limit: 30,
-      period: 30.minutes.freeze,
+    reports: {
+      limit: 400,
+      period: 24.hours.freeze,
     }.freeze,
   }.freeze