diff options
Diffstat (limited to 'server/initializers/constants.js')
-rw-r--r-- | server/initializers/constants.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/initializers/constants.js b/server/initializers/constants.js index 16e50443b..dc08805b9 100644 --- a/server/initializers/constants.js +++ b/server/initializers/constants.js | |||
@@ -1,22 +1,22 @@ | |||
1 | 'use strict' | 1 | 'use strict' |
2 | 2 | ||
3 | // API version of our pod | 3 | // API version of our pod |
4 | var API_VERSION = 'v1' | 4 | const API_VERSION = 'v1' |
5 | 5 | ||
6 | // Score a pod has when we create it as a friend | 6 | // Score a pod has when we create it as a friend |
7 | var FRIEND_BASE_SCORE = 100 | 7 | let FRIEND_BASE_SCORE = 100 |
8 | 8 | ||
9 | // Time to wait between requests to the friends | 9 | // Time to wait between requests to the friends |
10 | var INTERVAL = 60000 | 10 | let INTERVAL = 60000 |
11 | 11 | ||
12 | // Number of points we add/remove from a friend after a successful/bad request | 12 | // Number of points we add/remove from a friend after a successful/bad request |
13 | var PODS_SCORE = { | 13 | const PODS_SCORE = { |
14 | MALUS: -10, | 14 | MALUS: -10, |
15 | BONUS: 10 | 15 | BONUS: 10 |
16 | } | 16 | } |
17 | 17 | ||
18 | // Number of retries we make for the make retry requests (to friends...) | 18 | // Number of retries we make for the make retry requests (to friends...) |
19 | var REQUEST_RETRIES = 10 | 19 | let REQUEST_RETRIES = 10 |
20 | 20 | ||
21 | // Special constants for a test instance | 21 | // Special constants for a test instance |
22 | if (isTestInstance() === true) { | 22 | if (isTestInstance() === true) { |