]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/video-update.module.ts
Prevent hotkeys playback rate/seek with lives
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-update.module.ts
1 import { NgModule } from '@angular/core'
2 import { VideoEditModule } from './shared/video-edit.module'
3 import { VideoUpdateRoutingModule } from './video-update-routing.module'
4 import { VideoUpdateComponent } from './video-update.component'
5 import { VideoUpdateResolver } from './video-update.resolver'
6
7 @NgModule({
8 imports: [
9 VideoUpdateRoutingModule,
10
11 VideoEditModule
12 ],
13
14 declarations: [
15 VideoUpdateComponent
16 ],
17
18 exports: [ ],
19
20 providers: [
21 VideoUpdateResolver
22 ]
23 })
24 export class VideoUpdateModule { }