1
0
Fork 0
peertube/client/src/app/+videos/+video-edit/video-update.module.ts

27 lines
602 B
TypeScript
Raw Normal View History

2017-10-09 12:28:44 +00:00
import { NgModule } from '@angular/core'
2020-06-23 12:10:17 +00:00
import { CanDeactivateGuard } from '@app/core'
import { VideoEditModule } from './shared/video-edit.module'
2017-10-09 12:28:44 +00:00
import { VideoUpdateRoutingModule } from './video-update-routing.module'
import { VideoUpdateComponent } from './video-update.component'
2020-06-23 12:49:20 +00:00
import { VideoUpdateResolver } from './video-update.resolver'
2017-10-09 12:28:44 +00:00
@NgModule({
imports: [
VideoUpdateRoutingModule,
2020-06-23 12:10:17 +00:00
VideoEditModule
2017-10-09 12:28:44 +00:00
],
declarations: [
VideoUpdateComponent
],
2020-06-23 12:10:17 +00:00
exports: [ ],
2017-10-09 12:28:44 +00:00
2018-07-16 16:09:31 +00:00
providers: [
VideoUpdateResolver,
CanDeactivateGuard
2018-07-16 16:09:31 +00:00
]
2017-10-09 12:28:44 +00:00
})
export class VideoUpdateModule { }