aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/modal/video-support.component.ts
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2019-12-27 17:03:48 +0100
committerRigel Kent <sendmemail@rigelk.eu>2019-12-27 17:03:48 +0100
commit1053480b2561a35613551ea543d4d77bf8937b8c (patch)
treea79bf71bee2fa2d6e57c2769a7f566897380dca8 /client/src/app/videos/+video-watch/modal/video-support.component.ts
parentc1125bcadc1fa129856e56dc62f4c472cffa736a (diff)
downloadPeerTube-1053480b2561a35613551ea543d4d77bf8937b8c.tar.gz
PeerTube-1053480b2561a35613551ea543d4d77bf8937b8c.tar.zst
PeerTube-1053480b2561a35613551ea543d4d77bf8937b8c.zip
Slightly more personal support modal
Diffstat (limited to 'client/src/app/videos/+video-watch/modal/video-support.component.ts')
-rw-r--r--client/src/app/videos/+video-watch/modal/video-support.component.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/app/videos/+video-watch/modal/video-support.component.ts b/client/src/app/videos/+video-watch/modal/video-support.component.ts
index b56a51fbf..027b54efb 100644
--- a/client/src/app/videos/+video-watch/modal/video-support.component.ts
+++ b/client/src/app/videos/+video-watch/modal/video-support.component.ts
@@ -2,6 +2,7 @@ import { Component, Input, ViewChild } from '@angular/core'
2import { VideoDetails } from '../../../shared/video/video-details.model' 2import { VideoDetails } from '../../../shared/video/video-details.model'
3import { NgbModal } from '@ng-bootstrap/ng-bootstrap' 3import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
4import { MarkdownService } from '@app/shared/renderer' 4import { MarkdownService } from '@app/shared/renderer'
5import { User } from '@app/shared'
5 6
6@Component({ 7@Component({
7 selector: 'my-video-support', 8 selector: 'my-video-support',
@@ -10,6 +11,7 @@ import { MarkdownService } from '@app/shared/renderer'
10}) 11})
11export class VideoSupportComponent { 12export class VideoSupportComponent {
12 @Input() video: VideoDetails = null 13 @Input() video: VideoDetails = null
14 @Input() user: User = null
13 15
14 @ViewChild('modal', { static: true }) modal: NgbModal 16 @ViewChild('modal', { static: true }) modal: NgbModal
15 17