]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.module.ts
Reorganize client shared modules
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
67ed6552 2import { CanDeactivateGuard } from '@app/core'
80958c78 3import { VideoEditModule } from './shared/video-edit.module'
67ed6552
C
4import { DragDropDirective } from './video-add-components/drag-drop.directive'
5import { VideoImportTorrentComponent } from './video-add-components/video-import-torrent.component'
6import { VideoImportUrlComponent } from './video-add-components/video-import-url.component'
7import { VideoUploadComponent } from './video-add-components/video-upload.component'
a685e25c
C
8import { VideoAddRoutingModule } from './video-add-routing.module'
9import { VideoAddComponent } from './video-add.component'
a685e25c
C
10
11@NgModule({
12 imports: [
a685e25c 13 VideoAddRoutingModule,
67ed6552
C
14
15 VideoEditModule
a685e25c 16 ],
67ed6552 17
a685e25c 18 declarations: [
fbad87b0
C
19 VideoAddComponent,
20 VideoUploadComponent,
ce33919c 21 VideoImportUrlComponent,
c9ff8a08
RK
22 VideoImportTorrentComponent,
23 DragDropDirective
a685e25c 24 ],
67ed6552
C
25
26 exports: [ ],
27
529479f9
DG
28 providers: [
29 CanDeactivateGuard
30 ]
a685e25c
C
31})
32export class VideoAddModule { }