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