]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/video-add.module.ts
Move to sass module
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add.module.ts
1 import { NgModule } from '@angular/core'
2 import { CanDeactivateGuard } from '@app/core'
3 import { UploadxModule } from 'ngx-uploadx'
4 import { VideoEditModule } from './shared/video-edit.module'
5 import { DragDropDirective } from './video-add-components/drag-drop.directive'
6 import { VideoImportTorrentComponent } from './video-add-components/video-import-torrent.component'
7 import { VideoImportUrlComponent } from './video-add-components/video-import-url.component'
8 import { VideoGoLiveComponent } from './video-add-components/video-go-live.component'
9 import { VideoUploadComponent } from './video-add-components/video-upload.component'
10 import { VideoAddRoutingModule } from './video-add-routing.module'
11 import { VideoAddComponent } from './video-add.component'
12
13 @NgModule({
14 imports: [
15 VideoAddRoutingModule,
16
17 VideoEditModule,
18
19 UploadxModule
20 ],
21
22 declarations: [
23 VideoAddComponent,
24 VideoUploadComponent,
25 VideoImportUrlComponent,
26 VideoImportTorrentComponent,
27 DragDropDirective,
28 VideoGoLiveComponent
29 ],
30
31 exports: [ ],
32
33 providers: [
34 CanDeactivateGuard
35 ]
36 })
37 export class VideoAddModule { }