1
0
Fork 0
peertube/client/src/app/videos/+video-edit/video-add.module.ts

31 lines
1.0 KiB
TypeScript
Raw Normal View History

2017-10-09 12:28:44 +00:00
import { NgModule } from '@angular/core'
import { SharedModule } from '../../shared'
import { VideoEditModule } from './shared/video-edit.module'
2017-10-09 12:28:44 +00:00
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'
2018-08-06 15:13:39 +00:00
import { VideoImportTorrentComponent } from '@app/videos/+video-edit/video-add-components/video-import-torrent.component'
2017-10-09 12:28:44 +00:00
@NgModule({
imports: [
VideoAddRoutingModule,
VideoEditModule,
2020-03-18 14:48:46 +00:00
SharedModule
2017-10-09 12:28:44 +00:00
],
declarations: [
VideoAddComponent,
VideoUploadComponent,
2018-08-06 15:13:39 +00:00
VideoImportUrlComponent,
VideoImportTorrentComponent
2017-10-09 12:28:44 +00:00
],
exports: [
VideoAddComponent
],
providers: [
CanDeactivateGuard
]
2017-10-09 12:28:44 +00:00
})
export class VideoAddModule { }