aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/overview/overview.service.ts
diff options
context:
space:
mode:
authorBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
committerBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
commit23db998f07d674c621972a769df73203b14e093a (patch)
tree6ecb88dc98bdbe69e113e4841d05aec34d6d0491 /client/src/app/shared/overview/overview.service.ts
parent9fe4406794aaa4503d090ca4bfe6872b4e556178 (diff)
downloadPeerTube-23db998f07d674c621972a769df73203b14e093a.tar.gz
PeerTube-23db998f07d674c621972a769df73203b14e093a.tar.zst
PeerTube-23db998f07d674c621972a769df73203b14e093a.zip
remove unused imports
Diffstat (limited to 'client/src/app/shared/overview/overview.service.ts')
-rw-r--r--client/src/app/shared/overview/overview.service.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/client/src/app/shared/overview/overview.service.ts b/client/src/app/shared/overview/overview.service.ts
index 097079e6d..98dba2d97 100644
--- a/client/src/app/shared/overview/overview.service.ts
+++ b/client/src/app/shared/overview/overview.service.ts
@@ -5,7 +5,6 @@ import { forkJoin, Observable, of } from 'rxjs'
5import { VideosOverview as VideosOverviewServer, peertubeTranslate } from '../../../../../shared/models' 5import { VideosOverview as VideosOverviewServer, peertubeTranslate } from '../../../../../shared/models'
6import { environment } from '../../../environments/environment' 6import { environment } from '../../../environments/environment'
7import { RestExtractor } from '../rest/rest-extractor.service' 7import { RestExtractor } from '../rest/rest-extractor.service'
8import { RestService } from '../rest/rest.service'
9import { VideosOverview } from '@app/shared/overview/videos-overview.model' 8import { VideosOverview } from '@app/shared/overview/videos-overview.model'
10import { VideoService } from '@app/shared/video/video.service' 9import { VideoService } from '@app/shared/video/video.service'
11import { ServerService } from '@app/core' 10import { ServerService } from '@app/core'
@@ -18,7 +17,6 @@ export class OverviewService {
18 constructor ( 17 constructor (
19 private authHttp: HttpClient, 18 private authHttp: HttpClient,
20 private restExtractor: RestExtractor, 19 private restExtractor: RestExtractor,
21 private restService: RestService,
22 private videosService: VideoService, 20 private videosService: VideoService,
23 private serverService: ServerService 21 private serverService: ServerService
24 ) {} 22 ) {}