]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
fix video update button, add color to danger zone
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.module.ts
CommitLineData
66b16caf 1import { TagInputModule } from 'ngx-chips'
f77eb73b 2import { CalendarModule } from 'primeng/calendar'
67ed6552
C
3import { NgModule } from '@angular/core'
4import { SharedFormModule } from '@app/shared/shared-forms'
5import { SharedGlobalIconModule } from '@app/shared/shared-icons'
6import { SharedMainModule } from '@app/shared/shared-main'
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: [
13 TagInputModule,
bbe0f064 14 CalendarModule,
2de96f4d 15
67ed6552
C
16 SharedMainModule,
17 SharedFormModule,
18 SharedGlobalIconModule
2de96f4d
C
19 ],
20
21 declarations: [
6de36768 22 VideoEditComponent,
40e87e9e 23 VideoCaptionAddModalComponent
2de96f4d
C
24 ],
25
26 exports: [
27 TagInputModule,
bbe0f064 28 CalendarModule,
2de96f4d 29
67ed6552
C
30 SharedMainModule,
31 SharedFormModule,
32 SharedGlobalIconModule,
33
ff249f49 34 VideoEditComponent
2de96f4d
C
35 ],
36
187b2e23
C
37 providers: [
38 I18nPrimengCalendarService
39 ]
2de96f4d
C
40})
41export class VideoEditModule { }