]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-watch/video-watch.module.ts
Change friendly reminder about privacy.
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { LinkifierService } from '@app/videos/+video-watch/comment/linkifier.service'
3import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
4import { TooltipModule } from 'ngx-bootstrap/tooltip'
5import { ClipboardModule } from 'ngx-clipboard'
6import { SharedModule } from '../../shared'
7import { MarkdownService } from '../shared'
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'
15
16import { VideoWatchRoutingModule } from './video-watch-routing.module'
17
18import { VideoWatchComponent } from './video-watch.component'
19
20@NgModule({
21 imports: [
22 VideoWatchRoutingModule,
23 SharedModule,
24 ClipboardModule,
25 TooltipModule.forRoot()
26 ],
27
28 declarations: [
29 VideoWatchComponent,
30
31 VideoDownloadComponent,
32 VideoShareComponent,
33 VideoReportComponent,
34 VideoSupportComponent,
35 VideoCommentsComponent,
36 VideoCommentAddComponent,
37 VideoCommentComponent
38 ],
39
40 exports: [
41 VideoWatchComponent
42 ],
43
44 providers: [
45 MarkdownService,
46 LinkifierService,
47 VideoCommentService
48 ]
49})
50export class VideoWatchModule { }