export class AccountVideosComponent extends AbstractVideoList implements OnInit, OnDestroy {
titlePage: string
marginContent = false // Disable margin
- currentRoute = '/account/videos'
+ currentRoute = '/accounts/videos'
loadOnInit = false
private account: Account
this.accountSub = this.accountService.accountLoaded
.subscribe(account => {
this.account = account
- this.currentRoute = '/account/' + this.account.nameWithHost + '/videos'
+ this.currentRoute = '/accounts/' + this.account.nameWithHost + '/videos'
this.reloadVideos()
this.generateSyndicationList()