]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/shared/video-edit.module.ts
Add ability to list all local videos on client
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.module.ts
CommitLineData
2de96f4d 1import { NgModule } from '@angular/core'
66b16caf 2import { TagInputModule } from 'ngx-chips'
e79c6572 3import { SharedModule } from '../../../shared/'
ff249f49 4import { VideoEditComponent } from './video-edit.component'
e79c6572 5import { VideoImageComponent } from './video-image.component'
bbe0f064 6import { CalendarModule } from 'primeng/components/calendar/calendar'
40e87e9e 7import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
2de96f4d
C
8
9@NgModule({
10 imports: [
11 TagInputModule,
bbe0f064 12 CalendarModule,
2de96f4d
C
13
14 SharedModule
15 ],
16
17 declarations: [
6de36768 18 VideoEditComponent,
40e87e9e
C
19 VideoImageComponent,
20 VideoCaptionAddModalComponent
2de96f4d
C
21 ],
22
23 exports: [
24 TagInputModule,
bbe0f064 25 CalendarModule,
2de96f4d 26
ff249f49 27 VideoEditComponent
2de96f4d
C
28 ],
29
66b16caf 30 providers: []
2de96f4d
C
31})
32export class VideoEditModule { }