aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/constants.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r--server/initializers/constants.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts
index 64803b1db..3a9946bba 100644
--- a/server/initializers/constants.ts
+++ b/server/initializers/constants.ts
@@ -14,7 +14,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
14 14
15// --------------------------------------------------------------------------- 15// ---------------------------------------------------------------------------
16 16
17const LAST_MIGRATION_VERSION = 475 17const LAST_MIGRATION_VERSION = 480
18 18
19// --------------------------------------------------------------------------- 19// ---------------------------------------------------------------------------
20 20
@@ -541,11 +541,13 @@ let STATIC_MAX_AGE = {
541// Videos thumbnail size 541// Videos thumbnail size
542const THUMBNAILS_SIZE = { 542const THUMBNAILS_SIZE = {
543 width: 223, 543 width: 223,
544 height: 122 544 height: 122,
545 minWidth: 150
545} 546}
546const PREVIEWS_SIZE = { 547const PREVIEWS_SIZE = {
547 width: 850, 548 width: 850,
548 height: 480 549 height: 480,
550 minWidth: 400
549} 551}
550const AVATARS_SIZE = { 552const AVATARS_SIZE = {
551 width: 120, 553 width: 120,