]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
Move alert into to pt-alert-primary
[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'
57d74ec8 9import { VideoCaptionEditModalComponent } from './video-caption-edit-modal/video-caption-edit-modal.component'
67ed6552 10import { VideoEditComponent } from './video-edit.component'
2de96f4d
C
11
12@NgModule({
13 imports: [
bbe0f064 14 CalendarModule,
2de96f4d 15
67ed6552
C
16 SharedMainModule,
17 SharedFormModule,
f8c00564
C
18 SharedGlobalIconModule,
19 SharedVideoLiveModule
2de96f4d
C
20 ],
21
22 declarations: [
6de36768 23 VideoEditComponent,
57d74ec8 24 VideoCaptionAddModalComponent,
25 VideoCaptionEditModalComponent
2de96f4d
C
26 ],
27
28 exports: [
bbe0f064 29 CalendarModule,
2de96f4d 30
67ed6552
C
31 SharedMainModule,
32 SharedFormModule,
33 SharedGlobalIconModule,
34
ff249f49 35 VideoEditComponent
2de96f4d
C
36 ],
37
187b2e23
C
38 providers: [
39 I18nPrimengCalendarService
40 ]
2de96f4d
C
41})
42export class VideoEditModule { }