aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/controllers/api/v1/requests.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/controllers/api/v1/requests.js b/server/controllers/api/v1/requests.js
index 6018bb40c..17aca8af0 100644
--- a/server/controllers/api/v1/requests.js
+++ b/server/controllers/api/v1/requests.js
@@ -32,7 +32,8 @@ function getStatsRequests (req, res, next) {
32 32
33 return res.json({ 33 return res.json({
34 requests: requests, 34 requests: requests,
35 remainingMilliSeconds: remainingMilliSeconds 35 remainingMilliSeconds: remainingMilliSeconds,
36 milliSecondsInterval: constants.REQUESTS_INTERVAL
36 }) 37 })
37 }) 38 })
38} 39}