소스 검색

Remove API limits for /api/runs in GET mode

Gaël Métais 4 년 전
부모
커밋
92d92b8021
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/server/middlewares/apiLimitsMiddleware.js

+ 1 - 1
lib/server/middlewares/apiLimitsMiddleware.js

@@ -13,7 +13,7 @@ var apiLimitsMiddleware = function(req, res, next) {
     if (req.path.indexOf('/api/') === 0 && !res.locals.hasApiKey) {
         
         
-        if (req.path === '/api/runs') {
+        if (req.path === '/api/runs' && req.method === 'POST') {
             
             if (!runsTable.accepts(ipAddress)) {
                 // Sorry :/