diff options
Diffstat (limited to 'client/src/app/account')
-rw-r--r-- | client/src/app/account/account-videos/account-videos.component.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/account/account-videos/account-videos.component.ts b/client/src/app/account/account-videos/account-videos.component.ts index 2664d59d8..b9a3bea3f 100644 --- a/client/src/app/account/account-videos/account-videos.component.ts +++ b/client/src/app/account/account-videos/account-videos.component.ts | |||
@@ -27,6 +27,8 @@ export class AccountVideosComponent extends AbstractVideoList implements OnInit, | |||
27 | totalItems: null | 27 | totalItems: null |
28 | } | 28 | } |
29 | 29 | ||
30 | syndicationItems = {} | ||
31 | |||
30 | protected baseVideoWidth = -1 | 32 | protected baseVideoWidth = -1 |
31 | protected baseVideoHeight = 155 | 33 | protected baseVideoHeight = 155 |
32 | 34 | ||
@@ -61,6 +63,10 @@ export class AccountVideosComponent extends AbstractVideoList implements OnInit, | |||
61 | return this.videoService.getMyVideos(newPagination, this.sort) | 63 | return this.videoService.getMyVideos(newPagination, this.sort) |
62 | } | 64 | } |
63 | 65 | ||
66 | generateSyndicationList () { | ||
67 | throw new Error('Method not implemented.') | ||
68 | } | ||
69 | |||
64 | async deleteSelectedVideos () { | 70 | async deleteSelectedVideos () { |
65 | const toDeleteVideosIds = Object.keys(this.checkedVideos) | 71 | const toDeleteVideosIds = Object.keys(this.checkedVideos) |
66 | .filter(k => this.checkedVideos[k] === true) | 72 | .filter(k => this.checkedVideos[k] === true) |