diff options
Diffstat (limited to 'server/initializers/constants.js')
-rw-r--r-- | server/initializers/constants.js | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/server/initializers/constants.js b/server/initializers/constants.js index 96321b211..6c5287b19 100644 --- a/server/initializers/constants.js +++ b/server/initializers/constants.js | |||
@@ -5,7 +5,7 @@ const path = require('path') | |||
5 | 5 | ||
6 | // --------------------------------------------------------------------------- | 6 | // --------------------------------------------------------------------------- |
7 | 7 | ||
8 | const LAST_MIGRATION_VERSION = 25 | 8 | const LAST_MIGRATION_VERSION = 30 |
9 | 9 | ||
10 | // --------------------------------------------------------------------------- | 10 | // --------------------------------------------------------------------------- |
11 | 11 | ||
@@ -103,6 +103,27 @@ const VIDEO_RATE_TYPES = { | |||
103 | DISLIKE: 'dislike' | 103 | DISLIKE: 'dislike' |
104 | } | 104 | } |
105 | 105 | ||
106 | const VIDEO_CATEGORIES = { | ||
107 | 1: 'Music', | ||
108 | 2: 'Films', | ||
109 | 3: 'Vehicles', | ||
110 | 4: 'Art', | ||
111 | 5: 'Sports', | ||
112 | 6: 'Travels', | ||
113 | 7: 'Gaming', | ||
114 | 8: 'People', | ||
115 | 9: 'Comedy', | ||
116 | 10: 'Entertainment', | ||
117 | 11: 'News', | ||
118 | 12: 'Howto', | ||
119 | 13: 'Education', | ||
120 | 14: 'Activism', | ||
121 | 15: 'Science & Technology', | ||
122 | 16: 'Animals', | ||
123 | 17: 'Kids', | ||
124 | 18: 'Food' | ||
125 | } | ||
126 | |||
106 | // --------------------------------------------------------------------------- | 127 | // --------------------------------------------------------------------------- |
107 | 128 | ||
108 | // Score a pod has when we create it as a friend | 129 | // Score a pod has when we create it as a friend |
@@ -258,6 +279,7 @@ module.exports = { | |||
258 | STATIC_PATHS, | 279 | STATIC_PATHS, |
259 | THUMBNAILS_SIZE, | 280 | THUMBNAILS_SIZE, |
260 | USER_ROLES, | 281 | USER_ROLES, |
282 | VIDEO_CATEGORIES, | ||
261 | VIDEO_RATE_TYPES | 283 | VIDEO_RATE_TYPES |
262 | } | 284 | } |
263 | 285 | ||