X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-edit%2Fvideo-add.module.ts;h=870f7cb97cb74f30e15eac8a6d2bd45da62190be;hb=2de7f588eb7185525cc8687872fed443a24fd27b;hp=1bfedf25176e60a40ba4cf5689ae6a435c27f7f1;hpb=f6a043df74bc755de8e658ba76a4e55980b96f66;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-edit/video-add.module.ts b/client/src/app/videos/+video-edit/video-add.module.ts index 1bfedf251..870f7cb97 100644 --- a/client/src/app/videos/+video-edit/video-add.module.ts +++ b/client/src/app/videos/+video-edit/video-add.module.ts @@ -1,10 +1,13 @@ import { NgModule } from '@angular/core' -import { ProgressBarModule } from 'primeng/primeng' import { SharedModule } from '../../shared' import { VideoEditModule } from './shared/video-edit.module' import { VideoAddRoutingModule } from './video-add-routing.module' import { VideoAddComponent } from './video-add.component' import { CanDeactivateGuard } from '../../shared/guards/can-deactivate-guard.service' +import { VideoUploadComponent } from '@app/videos/+video-edit/video-add-components/video-upload.component' +import { VideoImportUrlComponent } from '@app/videos/+video-edit/video-add-components/video-import-url.component' +import { VideoImportTorrentComponent } from '@app/videos/+video-edit/video-add-components/video-import-torrent.component' +import { ProgressBarModule } from 'primeng/progressbar' @NgModule({ imports: [ @@ -14,7 +17,10 @@ import { CanDeactivateGuard } from '../../shared/guards/can-deactivate-guard.ser ProgressBarModule ], declarations: [ - VideoAddComponent + VideoAddComponent, + VideoUploadComponent, + VideoImportUrlComponent, + VideoImportTorrentComponent ], exports: [ VideoAddComponent