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