]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.module.ts
Add concept of video state, and add ability to wait transcoding before
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
c182778e 2import { ProgressBarModule } from 'primeng/primeng'
80958c78
C
3import { SharedModule } from '../../shared'
4import { VideoEditModule } from './shared/video-edit.module'
a685e25c
C
5import { VideoAddRoutingModule } from './video-add-routing.module'
6import { VideoAddComponent } from './video-add.component'
f6a043df 7import { CanDeactivateGuard } from '../../shared/guards/can-deactivate-guard.service'
a685e25c
C
8
9@NgModule({
10 imports: [
a685e25c 11 VideoAddRoutingModule,
2de96f4d 12 VideoEditModule,
c182778e
C
13 SharedModule,
14 ProgressBarModule
a685e25c 15 ],
a685e25c
C
16 declarations: [
17 VideoAddComponent
18 ],
a685e25c
C
19 exports: [
20 VideoAddComponent
21 ],
529479f9
DG
22 providers: [
23 CanDeactivateGuard
24 ]
a685e25c
C
25})
26export class VideoAddModule { }