]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+videos/+video-edit/video-add.module.ts
Make channelName optionnal in tests only and validators
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { CanDeactivateGuard } from '@app/core'
3import { VideoEditModule } from './shared/video-edit.module'
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'
8import { VideoAddRoutingModule } from './video-add-routing.module'
9import { VideoAddComponent } from './video-add.component'
10
11@NgModule({
12 imports: [
13 VideoAddRoutingModule,
14
15 VideoEditModule
16 ],
17
18 declarations: [
19 VideoAddComponent,
20 VideoUploadComponent,
21 VideoImportUrlComponent,
22 VideoImportTorrentComponent,
23 DragDropDirective
24 ],
25
26 exports: [ ],
27
28 providers: [
29 CanDeactivateGuard
30 ]
31})
32export class VideoAddModule { }