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