aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.ts')
-rw-r--r--client/src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.ts14
1 files changed, 4 insertions, 10 deletions
diff --git a/client/src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.ts b/client/src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.ts
index 0b0033082..8b507c626 100644
--- a/client/src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.ts
+++ b/client/src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.ts
@@ -1,12 +1,8 @@
1import { Component, OnDestroy, OnInit } from '@angular/core'
2import { ConfirmService } from '../../core/confirm'
3import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
4import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
5import { Subject, Subscription } from 'rxjs' 1import { Subject, Subscription } from 'rxjs'
6import { Notifier } from '@app/core' 2import { Component, OnDestroy, OnInit } from '@angular/core'
7import { VideoPlaylist } from '@app/shared/video-playlist/video-playlist.model' 3import { ComponentPagination, hasMoreItems } from '@app/core'
8import { ComponentPagination, hasMoreItems } from '@app/shared/rest/component-pagination.model' 4import { VideoChannel, VideoChannelService } from '@app/shared/shared-main'
9import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service' 5import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist'
10 6
11@Component({ 7@Component({
12 selector: 'my-video-channel-playlists', 8 selector: 'my-video-channel-playlists',
@@ -28,8 +24,6 @@ export class VideoChannelPlaylistsComponent implements OnInit, OnDestroy {
28 private videoChannel: VideoChannel 24 private videoChannel: VideoChannel
29 25
30 constructor ( 26 constructor (
31 private notifier: Notifier,
32 private confirmService: ConfirmService,
33 private videoPlaylistService: VideoPlaylistService, 27 private videoPlaylistService: VideoPlaylistService,
34 private videoChannelService: VideoChannelService 28 private videoChannelService: VideoChannelService
35 ) {} 29 ) {}