Rename duplicate to more universal mirror, add to miniature for quick access by admins

This commit is contained in:
Rigel Kent 2020-04-18 09:55:01 +02:00 committed by Rigel Kent
parent 86521a67b2
commit 988af781ac
2 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ export class VideoActionsDropdownComponent implements OnChanges {
isDisplayed: () => this.authService.isLoggedIn() && this.displayOptions.blacklist && this.isVideoUnblacklistable() isDisplayed: () => this.authService.isLoggedIn() && this.displayOptions.blacklist && this.isVideoUnblacklistable()
}, },
{ {
label: this.i18n('Duplicate (redundancy)'), label: this.i18n('Mirror'),
handler: () => this.duplicateVideo(), handler: () => this.duplicateVideo(),
isDisplayed: () => this.authService.isLoggedIn() && this.displayOptions.duplicate && this.canVideoBeDuplicated(), isDisplayed: () => this.authService.isLoggedIn() && this.displayOptions.duplicate && this.canVideoBeDuplicated(),
iconName: 'cloud-download' iconName: 'cloud-download'

View File

@ -65,7 +65,7 @@ export class VideoMiniatureComponent implements OnInit {
blacklist: true, blacklist: true,
delete: true, delete: true,
report: true, report: true,
duplicate: false duplicate: true
} }
showActions = false showActions = false
serverConfig: ServerConfig serverConfig: ServerConfig