]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Unlisted videos are not displayed on Mastodon now
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
07fa4c97 2import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
fb4fd623
C
3import { TooltipModule } from 'ngx-bootstrap/tooltip'
4import { ClipboardModule } from 'ngx-clipboard'
5import { SharedModule } from '../../shared'
6import { MarkdownService } from '../shared'
4635f59d
C
7import { VideoCommentAddComponent } from './comment/video-comment-add.component'
8import { VideoCommentComponent } from './comment/video-comment.component'
9import { VideoCommentService } from './comment/video-comment.service'
10import { VideoCommentsComponent } from './comment/video-comments.component'
11import { VideoDownloadComponent } from './modal/video-download.component'
12import { VideoReportComponent } from './modal/video-report.component'
13import { VideoShareComponent } from './modal/video-share.component'
a685e25c
C
14
15import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c
C
16
17import { VideoWatchComponent } from './video-watch.component'
a685e25c
C
18
19@NgModule({
20 imports: [
21 VideoWatchRoutingModule,
c7e1e432 22 SharedModule,
e9189001
C
23 ClipboardModule,
24 TooltipModule.forRoot()
a685e25c
C
25 ],
26
27 declarations: [
28 VideoWatchComponent,
29
a96aed15 30 VideoDownloadComponent,
a685e25c 31 VideoShareComponent,
4635f59d 32 VideoReportComponent,
07fa4c97 33 VideoSupportComponent,
4635f59d
C
34 VideoCommentsComponent,
35 VideoCommentAddComponent,
36 VideoCommentComponent
a685e25c
C
37 ],
38
39 exports: [
40 VideoWatchComponent
41 ],
42
43 providers: [
4635f59d
C
44 MarkdownService,
45 VideoCommentService
a685e25c
C
46 ]
47})
48export class VideoWatchModule { }