]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-edit/video-add.module.ts
Add tests regarding video import
[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'
8import { VideoUploadComponent } from '@app/videos/+video-edit/video-upload.component'
9import { VideoImportComponent } from '@app/videos/+video-edit/video-import.component'
10
11@NgModule({
12 imports: [
13 VideoAddRoutingModule,
14 VideoEditModule,
15 SharedModule,
16 ProgressBarModule
17 ],
18 declarations: [
19 VideoAddComponent,
20 VideoUploadComponent,
21 VideoImportComponent
22 ],
23 exports: [
24 VideoAddComponent
25 ],
26 providers: [
27 CanDeactivateGuard
28 ]
29})
30export class VideoAddModule { }