Commit 8f818199 authored by Brian Hatchet's avatar Brian Hatchet :speech_balloon:

max daily boost views

1 merge request!5(chore) Default video values and feature flags
......@@ -605,11 +605,13 @@ data:
'top-feeds' => {{ .Values.features.top_feeds }},
'es-feeds' => {{ .Values.features.es_feeds }},
'cassandra-notifications' => {{ .Values.features.cassandra_notifications }},
'allow-comments-toggle' => {{ .Values.features.allow_comments_toggle }}
'allow-comments-toggle' => {{ .Values.features.allow_comments_toggle }},
'permissions' => {{ .Values.features.permissions }},
]);
$CONFIG->max_video_length = {{ .Values.max_video_length }};
$CONFIG->max_video_file_size = {{ .Values.max_video_file_size }};
$CONFIG->max_daily_boost_views = {{ .Values.max_daily_boost_views }};
php-fpm.conf: |-
[www]
......
......@@ -245,6 +245,7 @@ features:
cassandra_notifications: true
es_feeds: '"canary"'
helpdesk: true
permissions: false
suggested_users: false
top_feeds: true
......@@ -252,3 +253,4 @@ features:
max_video_file_size: '4294967296'
# Seconds
max_video_length: 12600
max_daily_boost_views: 10000
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment