aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/video-list/video-user-subscriptions.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+videos/video-list/video-user-subscriptions.component.ts')
-rw-r--r--client/src/app/+videos/video-list/video-user-subscriptions.component.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/+videos/video-list/video-user-subscriptions.component.ts b/client/src/app/+videos/video-list/video-user-subscriptions.component.ts
index 62d862ec9..e352a2b2c 100644
--- a/client/src/app/+videos/video-list/video-user-subscriptions.component.ts
+++ b/client/src/app/+videos/video-list/video-user-subscriptions.component.ts
@@ -1,6 +1,6 @@
1 1
2import { switchMap } from 'rxjs/operators' 2import { switchMap } from 'rxjs/operators'
3import { Component, OnDestroy, OnInit } from '@angular/core' 3import { Component, ComponentFactoryResolver, OnDestroy, OnInit } from '@angular/core'
4import { ActivatedRoute, Router } from '@angular/router' 4import { ActivatedRoute, Router } from '@angular/router'
5import { AuthService, LocalStorageService, Notifier, ScopedTokensService, ScreenService, ServerService, UserService } from '@app/core' 5import { AuthService, LocalStorageService, Notifier, ScopedTokensService, ScreenService, ServerService, UserService } from '@app/core'
6import { HooksService } from '@app/core/plugins/hooks.service' 6import { HooksService } from '@app/core/plugins/hooks.service'
@@ -33,6 +33,7 @@ export class VideoUserSubscriptionsComponent extends AbstractVideoList implement
33 protected screenService: ScreenService, 33 protected screenService: ScreenService,
34 protected storageService: LocalStorageService, 34 protected storageService: LocalStorageService,
35 private userSubscription: UserSubscriptionService, 35 private userSubscription: UserSubscriptionService,
36 protected cfr: ComponentFactoryResolver,
36 private hooks: HooksService, 37 private hooks: HooksService,
37 private videoService: VideoService, 38 private videoService: VideoService,
38 private scopedTokensService: ScopedTokensService 39 private scopedTokensService: ScopedTokensService
@@ -102,7 +103,8 @@ export class VideoUserSubscriptionsComponent extends AbstractVideoList implement
102 } 103 }
103 104
104 generateSyndicationList () { 105 generateSyndicationList () {
105 // not implemented yet 106 /* method disabled: the view provides its own */
107 throw new Error('Method not implemented.')
106 } 108 }
107 109
108 activateCopiedMessage () { 110 activateCopiedMessage () {