blob: 3ecf96459fc7ee32191ae39350f2926778e663d1 (
plain) (
tree)
|
|
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'
@NgModule({
imports: [
VideoAddRoutingModule,
VideoEditModule,
SharedModule,
ProgressBarModule
],
declarations: [
VideoAddComponent,
VideoUploadComponent,
VideoImportUrlComponent,
VideoImportTorrentComponent
],
exports: [
VideoAddComponent
],
providers: [
CanDeactivateGuard
]
})
export class VideoAddModule { }
|