aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels/video-channel-videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-06-15 16:52:15 +0200
committerChocobozzz <me@florianbigard.com>2018-06-15 18:20:56 +0200
commitbbe0f0645ca958d33a3f409b15166609733b663f (patch)
treeedcd5d702c73cda74a2177c4bdc08c616334337d /client/src/app/+video-channels/video-channel-videos
parent2baea0c77cc765f7cbca9c9a2f4272268892a35c (diff)
downloadPeerTube-bbe0f0645ca958d33a3f409b15166609733b663f.tar.gz
PeerTube-bbe0f0645ca958d33a3f409b15166609733b663f.tar.zst
PeerTube-bbe0f0645ca958d33a3f409b15166609733b663f.zip
Add ability to schedule video publication
Diffstat (limited to 'client/src/app/+video-channels/video-channel-videos')
-rw-r--r--client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts b/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts
index 2d3f66994..800d97b7f 100644
--- a/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts
+++ b/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts
@@ -12,6 +12,7 @@ import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
12import { tap } from 'rxjs/operators' 12import { tap } from 'rxjs/operators'
13import { I18n } from '@ngx-translate/i18n-polyfill' 13import { I18n } from '@ngx-translate/i18n-polyfill'
14import { Subscription } from 'rxjs' 14import { Subscription } from 'rxjs'
15import { ScreenService } from '@app/shared/misc/screen.service'
15 16
16@Component({ 17@Component({
17 selector: 'my-video-channel-videos', 18 selector: 'my-video-channel-videos',
@@ -37,6 +38,7 @@ export class VideoChannelVideosComponent extends AbstractVideoList implements On
37 protected notificationsService: NotificationsService, 38 protected notificationsService: NotificationsService,
38 protected confirmService: ConfirmService, 39 protected confirmService: ConfirmService,
39 protected location: Location, 40 protected location: Location,
41 protected screenService: ScreenService,
40 protected i18n: I18n, 42 protected i18n: I18n,
41 private videoChannelService: VideoChannelService, 43 private videoChannelService: VideoChannelService,
42 private videoService: VideoService 44 private videoService: VideoService