]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-add.module.ts
Replace p-progressbar and bootstrap progressbar with pure CSS alt
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../../shared'
3 import { VideoEditModule } from './shared/video-edit.module'
4 import { VideoAddRoutingModule } from './video-add-routing.module'
5 import { VideoAddComponent } from './video-add.component'
6 import { CanDeactivateGuard } from '../../shared/guards/can-deactivate-guard.service'
7 import { VideoUploadComponent } from '@app/videos/+video-edit/video-add-components/video-upload.component'
8 import { VideoImportUrlComponent } from '@app/videos/+video-edit/video-add-components/video-import-url.component'
9 import { VideoImportTorrentComponent } from '@app/videos/+video-edit/video-add-components/video-import-torrent.component'
10
11 @NgModule({
12 imports: [
13 VideoAddRoutingModule,
14 VideoEditModule,
15 SharedModule,
16 ],
17 declarations: [
18 VideoAddComponent,
19 VideoUploadComponent,
20 VideoImportUrlComponent,
21 VideoImportTorrentComponent
22 ],
23 exports: [
24 VideoAddComponent
25 ],
26 providers: [
27 CanDeactivateGuard
28 ]
29 })
30 export class VideoAddModule { }