]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-edit/video-add.module.ts
Redirect to uuid video route after upload
[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'
7
8@NgModule({
9 imports: [
10 VideoAddRoutingModule,
11 VideoEditModule,
12 SharedModule,
13 ProgressBarModule
14 ],
15
16 declarations: [
17 VideoAddComponent
18 ],
19
20 exports: [
21 VideoAddComponent
22 ],
23
24 providers: [ ]
25})
26export class VideoAddModule { }