]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Migrate to bootstrap 4 and ng-bootstrap
[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 { 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 14import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c 15import { VideoWatchComponent } from './video-watch.component'
4503cb2a 16import { NgxQRCodeModule } from 'ngx-qrcode2'
63347a0f 17import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
a685e25c
C
18
19@NgModule({
20 imports: [
21 VideoWatchRoutingModule,
c7e1e432 22 SharedModule,
e9189001 23 ClipboardModule,
63347a0f 24 NgbTooltipModule.forRoot(),
4503cb2a 25 NgxQRCodeModule
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 { }