]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Fix client development so that it uses the local ng binary; (#177)
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
fb4fd623
C
2import { TooltipModule } from 'ngx-bootstrap/tooltip'
3import { ClipboardModule } from 'ngx-clipboard'
4import { SharedModule } from '../../shared'
5import { MarkdownService } from '../shared'
4635f59d
C
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'
a685e25c
C
13
14import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c
C
15
16import { VideoWatchComponent } from './video-watch.component'
a685e25c
C
17
18@NgModule({
19 imports: [
20 VideoWatchRoutingModule,
c7e1e432 21 SharedModule,
e9189001
C
22 ClipboardModule,
23 TooltipModule.forRoot()
a685e25c
C
24 ],
25
26 declarations: [
27 VideoWatchComponent,
28
a96aed15 29 VideoDownloadComponent,
a685e25c 30 VideoShareComponent,
4635f59d
C
31 VideoReportComponent,
32 VideoCommentsComponent,
33 VideoCommentAddComponent,
34 VideoCommentComponent
a685e25c
C
35 ],
36
37 exports: [
38 VideoWatchComponent
39 ],
40
41 providers: [
4635f59d
C
42 MarkdownService,
43 VideoCommentService
a685e25c
C
44 ]
45})
46export class VideoWatchModule { }