]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.module.ts
... / ...
CommitLineData
1import { CalendarModule } from 'primeng/calendar'
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'
6import { SharedVideoLiveModule } from '@app/shared/shared-video-live'
7import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
8import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
9import { VideoCaptionEditModalContentComponent } from './video-caption-edit-modal-content/video-caption-edit-modal-content.component'
10import { 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})
42export class VideoEditModule { }