Просмотр исходного кода

Merge pull request #2120 from overleaf/bg-fix-rate-limit

Revert "Add a rate limit to the `/project` page"

GitOrigin-RevId: 1bcd88e03a4cea2defbd4779bc81d0d972f1cd4e
Brian Gough 7 лет назад
Родитель
Сommit
7d9fe92f28
1 измененных файлов с 0 добавлено и 5 удалено
  1. 0 5
      services/web/app/src/router.js

+ 0 - 5
services/web/app/src/router.js

@@ -262,11 +262,6 @@ function initialize(webRouter, privateApiRouter, publicApiRouter) {
   webRouter.get(
     '/project',
     AuthenticationController.requireLogin(),
-    RateLimiterMiddleware.rateLimit({
-      endpointName: 'open-project',
-      maxRequests: 20,
-      timeInterval: 60
-    }),
     ProjectController.projectListPage
   )
   webRouter.post(