Rename config key

pull/4461/head
Chocobozzz 2021-10-12 14:25:30 +02:00
parent 7399a79f73
commit 80dea8f4d6
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
6 changed files with 15 additions and 7 deletions

View File

@ -101,11 +101,15 @@ export class VideoMiniatureComponent implements OnInit {
) {}
get authorAccount () {
return this.serverConfig.client.videos.miniature.showAuthorDisplayName ? this.video.account.displayName : this.video.byAccount
return this.serverConfig.client.videos.miniature.preferAuthorDisplayName
? this.video.account.displayName
: this.video.byAccount
}
get authorChannel () {
return this.serverConfig.client.videos.miniature.showAuthorDisplayName ? this.video.channel.displayName : this.video.byVideoChannel
return this.serverConfig.client.videos.miniature.preferAuthorDisplayName
? this.video.channel.displayName
: this.video.byVideoChannel
}
get isVideoBlur () {

View File

@ -75,10 +75,12 @@ email:
subject:
prefix: "[PeerTube]"
# PeerTube client/interface configuration
client:
videos:
miniature:
show_author_display_name: false
# By default PeerTube client displays author username
prefer_author_display_name: false
# From the project root directory
storage:

View File

@ -73,10 +73,12 @@ email:
subject:
prefix: "[PeerTube]"
# PeerTube client/interface configuration
client:
videos:
miniature:
show_author_display_name: false
# By default PeerTube client displays author username
prefer_author_display_name: false
# From the project root directory
storage:

View File

@ -62,7 +62,7 @@ const CONFIG = {
CLIENT: {
VIDEOS: {
MINIATURE: {
get SHOW_AUTHOR_DISPLAY_NAME () { return config.get<boolean>('client.videos.miniature.show_author_display_name') }
get PREFER_AUTHOR_DISPLAY_NAME () { return config.get<boolean>('client.videos.miniature.prefer_author_display_name') }
}
}
},

View File

@ -46,7 +46,7 @@ class ServerConfigManager {
client: {
videos: {
miniature: {
showAuthorDisplayName: CONFIG.CLIENT.VIDEOS.MINIATURE.SHOW_AUTHOR_DISPLAY_NAME
preferAuthorDisplayName: CONFIG.CLIENT.VIDEOS.MINIATURE.PREFER_AUTHOR_DISPLAY_NAME
}
}
},

View File

@ -37,7 +37,7 @@ export interface ServerConfig {
client: {
videos: {
miniature: {
showAuthorDisplayName: boolean
preferAuthorDisplayName: boolean
}
}
}