]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
Translate plugin settings
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.module.ts
CommitLineData
f77eb73b 1import { CalendarModule } from 'primeng/calendar'
67ed6552
C
2import { NgModule } from '@angular/core'
3import { SharedFormModule } from '@app/shared/shared-forms'
4import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5import { SharedMainModule } from '@app/shared/shared-main'
f8c00564 6import { SharedVideoLiveModule } from '@app/shared/shared-video-live'
187b2e23 7import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
40e87e9e 8import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
67ed6552 9import { VideoEditComponent } from './video-edit.component'
2de96f4d
C
10
11@NgModule({
12 imports: [
bbe0f064 13 CalendarModule,
2de96f4d 14
67ed6552
C
15 SharedMainModule,
16 SharedFormModule,
f8c00564
C
17 SharedGlobalIconModule,
18 SharedVideoLiveModule
2de96f4d
C
19 ],
20
21 declarations: [
6de36768 22 VideoEditComponent,
40e87e9e 23 VideoCaptionAddModalComponent
2de96f4d
C
24 ],
25
26 exports: [
bbe0f064 27 CalendarModule,
2de96f4d 28
67ed6552
C
29 SharedMainModule,
30 SharedFormModule,
31 SharedGlobalIconModule,
32
ff249f49 33 VideoEditComponent
2de96f4d
C
34 ],
35
187b2e23
C
36 providers: [
37 I18nPrimengCalendarService
38 ]
2de96f4d
C
39})
40export class VideoEditModule { }