aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+my-library')
-rw-r--r--client/src/app/+my-library/my-history/my-history.component.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/+my-library/my-history/my-history.component.ts b/client/src/app/+my-library/my-history/my-history.component.ts
index 0c8e4b83f..1695bd7ad 100644
--- a/client/src/app/+my-library/my-history/my-history.component.ts
+++ b/client/src/app/+my-library/my-history/my-history.component.ts
@@ -1,4 +1,4 @@
1import { Component, OnDestroy, OnInit } from '@angular/core' 1import { Component, ComponentFactoryResolver, OnDestroy, OnInit } from '@angular/core'
2import { ActivatedRoute, Router } from '@angular/router' 2import { ActivatedRoute, Router } from '@angular/router'
3import { 3import {
4 AuthService, 4 AuthService,
@@ -42,7 +42,8 @@ export class MyHistoryComponent extends AbstractVideoList implements OnInit, OnD
42 protected screenService: ScreenService, 42 protected screenService: ScreenService,
43 protected storageService: LocalStorageService, 43 protected storageService: LocalStorageService,
44 private confirmService: ConfirmService, 44 private confirmService: ConfirmService,
45 private userHistoryService: UserHistoryService 45 private userHistoryService: UserHistoryService,
46 protected cfr: ComponentFactoryResolver
46 ) { 47 ) {
47 super() 48 super()
48 49
@@ -95,6 +96,7 @@ export class MyHistoryComponent extends AbstractVideoList implements OnInit, OnD
95 } 96 }
96 97
97 generateSyndicationList () { 98 generateSyndicationList () {
99 /* method disabled */
98 throw new Error('Method not implemented.') 100 throw new Error('Method not implemented.')
99 } 101 }
100 102