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

33 lines
961 B
TypeScript
Raw Normal View History

2017-10-09 12:28:44 +00:00
import { NgModule } from '@angular/core'
2020-06-23 12:10:17 +00:00
import { CanDeactivateGuard } from '@app/core'
import { VideoEditModule } from './shared/video-edit.module'
2020-06-23 12:10:17 +00:00
import { DragDropDirective } from './video-add-components/drag-drop.directive'
import { VideoImportTorrentComponent } from './video-add-components/video-import-torrent.component'
import { VideoImportUrlComponent } from './video-add-components/video-import-url.component'
import { VideoUploadComponent } from './video-add-components/video-upload.component'
2017-10-09 12:28:44 +00:00
import { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'
@NgModule({
imports: [
VideoAddRoutingModule,
2020-06-23 12:10:17 +00:00
VideoEditModule
2017-10-09 12:28:44 +00:00
],
2020-06-23 12:10:17 +00:00
2017-10-09 12:28:44 +00:00
declarations: [
VideoAddComponent,
VideoUploadComponent,
2018-08-06 15:13:39 +00:00
VideoImportUrlComponent,
VideoImportTorrentComponent,
DragDropDirective
2017-10-09 12:28:44 +00:00
],
2020-06-23 12:10:17 +00:00
exports: [ ],
providers: [
CanDeactivateGuard
]
2017-10-09 12:28:44 +00:00
})
export class VideoAddModule { }