]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
Use ng select for multiselect
[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 { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
7import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
8import { VideoEditComponent } from './video-edit.component'
9
10@NgModule({
11 imports: [
12 CalendarModule,
13
14 SharedMainModule,
15 SharedFormModule,
16 SharedGlobalIconModule
17 ],
18
19 declarations: [
20 VideoEditComponent,
21 VideoCaptionAddModalComponent
22 ],
23
24 exports: [
25 CalendarModule,
26
27 SharedMainModule,
28 SharedFormModule,
29 SharedGlobalIconModule,
30
31 VideoEditComponent
32 ],
33
34 providers: [
35 I18nPrimengCalendarService
36 ]
37})
38export class VideoEditModule { }