]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-edit/video-add.module.ts
Remove unnecessary margin
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../../shared'
3import { VideoEditModule } from './shared/video-edit.module'
4import { VideoAddRoutingModule } from './video-add-routing.module'
5import { VideoAddComponent } from './video-add.component'
6import { CanDeactivateGuard } from '../../shared/guards/can-deactivate-guard.service'
7import { VideoUploadComponent } from '@app/videos/+video-edit/video-add-components/video-upload.component'
8import { VideoImportUrlComponent } from '@app/videos/+video-edit/video-add-components/video-import-url.component'
9import { VideoImportTorrentComponent } from '@app/videos/+video-edit/video-add-components/video-import-torrent.component'
10
11@NgModule({
12 imports: [
13 VideoAddRoutingModule,
14 VideoEditModule,
15 SharedModule
16 ],
17 declarations: [
18 VideoAddComponent,
19 VideoUploadComponent,
20 VideoImportUrlComponent,
21 VideoImportTorrentComponent
22 ],
23 exports: [
24 VideoAddComponent
25 ],
26 providers: [
27 CanDeactivateGuard
28 ]
29})
30export class VideoAddModule { }