diff options
author | kontrollanten <6680299+kontrollanten@users.noreply.github.com> | 2021-10-12 14:23:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 14:23:44 +0200 |
commit | 7399a79f73cc2015e64fad49361439a322ee1d3b (patch) | |
tree | 134903063dbc66e5f3b12cc59669d061403bdde1 /config | |
parent | 10ef089102f2225c5ec3ed426bc612e4f2bc8655 (diff) | |
download | PeerTube-7399a79f73cc2015e64fad49361439a322ee1d3b.tar.gz PeerTube-7399a79f73cc2015e64fad49361439a322ee1d3b.tar.zst PeerTube-7399a79f73cc2015e64fad49361439a322ee1d3b.zip |
add option to always show channel display name (#4422)
* add option to always show channel display name
closes #4040
* show avatar in video miniatures
closes #4040
* Revert "show avatar in video miniatures"
This reverts commit 79b1a84140857fc24f7e2233e838d012f72bc56f.
* channel display name: fix review comments
Diffstat (limited to 'config')
-rw-r--r-- | config/default.yaml | 5 | ||||
-rw-r--r-- | config/production.yaml.example | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/config/default.yaml b/config/default.yaml index 707187b7c..dec34affd 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -75,6 +75,11 @@ email: | |||
75 | subject: | 75 | subject: |
76 | prefix: "[PeerTube]" | 76 | prefix: "[PeerTube]" |
77 | 77 | ||
78 | client: | ||
79 | videos: | ||
80 | miniature: | ||
81 | show_author_display_name: false | ||
82 | |||
78 | # From the project root directory | 83 | # From the project root directory |
79 | storage: | 84 | storage: |
80 | tmp: 'storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing... | 85 | tmp: 'storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing... |
diff --git a/config/production.yaml.example b/config/production.yaml.example index e405daa71..a55c99eaa 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -73,6 +73,11 @@ email: | |||
73 | subject: | 73 | subject: |
74 | prefix: "[PeerTube]" | 74 | prefix: "[PeerTube]" |
75 | 75 | ||
76 | client: | ||
77 | videos: | ||
78 | miniature: | ||
79 | show_author_display_name: false | ||
80 | |||
76 | # From the project root directory | 81 | # From the project root directory |
77 | storage: | 82 | storage: |
78 | tmp: '/var/www/peertube/storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing... | 83 | tmp: '/var/www/peertube/storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing... |