aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add.module.ts
blob: 911404badfb63191fd1a534e4a00938d8f3e20ca (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        

                                                            

                                                                  
                                                                                     

                                                                                                                 
                                                                                                                         


            
                          
                    
                
    
                 

                         

                               
    


                     


                      

                               
import { NgModule } from '@angular/core'
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
  ],
  declarations: [
    VideoAddComponent,
    VideoUploadComponent,
    VideoImportUrlComponent,
    VideoImportTorrentComponent
  ],
  exports: [
    VideoAddComponent
  ],
  providers: [
    CanDeactivateGuard
  ]
})
export class VideoAddModule { }