]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-edit/video-update.module.ts
Use a resolver when updating the video
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-update.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../../shared'
3import { VideoEditModule } from './shared/video-edit.module'
4import { VideoUpdateRoutingModule } from './video-update-routing.module'
5import { VideoUpdateComponent } from './video-update.component'
6import { VideoUpdateResolver } from '@app/videos/+video-edit/video-update.resolver'
7
8@NgModule({
9 imports: [
10 VideoUpdateRoutingModule,
11 VideoEditModule,
12 SharedModule
13 ],
14
15 declarations: [
16 VideoUpdateComponent
17 ],
18
19 exports: [
20 VideoUpdateComponent
21 ],
22
23 providers: [
24 VideoUpdateResolver
25 ]
26})
27export class VideoUpdateModule { }