aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-update.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/+video-edit/video-update.module.ts')
-rw-r--r--client/src/app/videos/+video-edit/video-update.module.ts26
1 files changed, 0 insertions, 26 deletions
diff --git a/client/src/app/videos/+video-edit/video-update.module.ts b/client/src/app/videos/+video-edit/video-update.module.ts
deleted file mode 100644
index 322c69629..000000000
--- a/client/src/app/videos/+video-edit/video-update.module.ts
+++ /dev/null
@@ -1,26 +0,0 @@
1import { NgModule } from '@angular/core'
2import { CanDeactivateGuard } from '@app/core'
3import { VideoUpdateResolver } from '@app/videos/+video-edit/video-update.resolver'
4import { VideoEditModule } from './shared/video-edit.module'
5import { VideoUpdateRoutingModule } from './video-update-routing.module'
6import { VideoUpdateComponent } from './video-update.component'
7
8@NgModule({
9 imports: [
10 VideoUpdateRoutingModule,
11
12 VideoEditModule
13 ],
14
15 declarations: [
16 VideoUpdateComponent
17 ],
18
19 exports: [ ],
20
21 providers: [
22 VideoUpdateResolver,
23 CanDeactivateGuard
24 ]
25})
26export class VideoUpdateModule { }