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