aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/constants.js
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-16 22:29:27 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-16 22:29:27 +0100
commitf0f5567b6918fc60c8cab15e13aec03a89a91dfb (patch)
tree99dfdb9fa8273c9cda1360fd3b6bfccc515bf8be /server/initializers/constants.js
parent5101105ef91bfe478f97546b78b321882da2079c (diff)
downloadPeerTube-f0f5567b6918fc60c8cab15e13aec03a89a91dfb.tar.gz
PeerTube-f0f5567b6918fc60c8cab15e13aec03a89a91dfb.tar.zst
PeerTube-f0f5567b6918fc60c8cab15e13aec03a89a91dfb.zip
Use const/let now we use node 4.2
Diffstat (limited to 'server/initializers/constants.js')
-rw-r--r--server/initializers/constants.js10
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
4var API_VERSION = 'v1' 4const 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
7var FRIEND_BASE_SCORE = 100 7let FRIEND_BASE_SCORE = 100
8 8
9// Time to wait between requests to the friends 9// Time to wait between requests to the friends
10var INTERVAL = 60000 10let 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
13var PODS_SCORE = { 13const 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...)
19var REQUEST_RETRIES = 10 19let REQUEST_RETRIES = 10
20 20
21// Special constants for a test instance 21// Special constants for a test instance
22if (isTestInstance() === true) { 22if (isTestInstance() === true) {