]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { NgModule } from '@angular/core'
2import { ProgressBarModule } from 'primeng/primeng'
3import { SharedModule } from '../../shared'
4import { VideoEditModule } from './shared/video-edit.module'
5import { VideoAddRoutingModule } from './video-add-routing.module'
6import { VideoAddComponent } from './video-add.component'
7import { CanDeactivateGuard } from '../../shared/guards/can-deactivate-guard.service'
8
9@NgModule({
10 imports: [
11 VideoAddRoutingModule,
12 VideoEditModule,
13 SharedModule,
14 ProgressBarModule
15 ],
16 declarations: [
17 VideoAddComponent
18 ],
19 exports: [
20 VideoAddComponent
21 ],
22 providers: [
23 CanDeactivateGuard
24 ]
25})
26export class VideoAddModule { }