]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
Fix upload page
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.module.ts
1 import { TagInputModule } from 'ngx-chips'
2 import { CalendarModule } from 'primeng/calendar'
3 import { NgModule } from '@angular/core'
4 import { SharedFormModule } from '@app/shared/shared-forms'
5 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
6 import { SharedMainModule } from '@app/shared/shared-main'
7 import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
8 import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
9 import { VideoEditComponent } from './video-edit.component'
10
11 @NgModule({
12 imports: [
13 TagInputModule,
14 CalendarModule,
15
16 SharedMainModule,
17 SharedFormModule,
18 SharedGlobalIconModule
19 ],
20
21 declarations: [
22 VideoEditComponent,
23 VideoCaptionAddModalComponent
24 ],
25
26 exports: [
27 TagInputModule,
28 CalendarModule,
29
30 SharedMainModule,
31 SharedFormModule,
32 SharedGlobalIconModule,
33
34 VideoEditComponent
35 ],
36
37 providers: [
38 I18nPrimengCalendarService
39 ]
40 })
41 export class VideoEditModule { }