From 62e62f118d5da57acd3494fece2e8ed357564ffe Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 9 May 2018 09:26:41 +0200 Subject: Load my-account module lazily --- client/src/app/my-account/my-account.module.ts | 38 -------------------------- 1 file changed, 38 deletions(-) delete mode 100644 client/src/app/my-account/my-account.module.ts (limited to 'client/src/app/my-account/my-account.module.ts') diff --git a/client/src/app/my-account/my-account.module.ts b/client/src/app/my-account/my-account.module.ts deleted file mode 100644 index ba9dea71e..000000000 --- a/client/src/app/my-account/my-account.module.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { NgModule } from '@angular/core' -import { SharedModule } from '../shared' -import { MyAccountRoutingModule } from './my-account-routing.module' -import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component' -import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component' -import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' -import { MyAccountComponent } from './my-account.component' -import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component' -import { MyAccountProfileComponent } from '@app/my-account/my-account-settings/my-account-profile/my-account-profile.component' -import { MyAccountVideoChannelsComponent } from '@app/my-account/my-account-video-channels/my-account-video-channels.component' -import { MyAccountVideoChannelCreateComponent } from '@app/my-account/my-account-video-channels/my-account-video-channel-create.component' -import { MyAccountVideoChannelUpdateComponent } from '@app/my-account/my-account-video-channels/my-account-video-channel-update.component' - -@NgModule({ - imports: [ - MyAccountRoutingModule, - SharedModule - ], - - declarations: [ - MyAccountComponent, - MyAccountSettingsComponent, - MyAccountChangePasswordComponent, - MyAccountVideoSettingsComponent, - MyAccountProfileComponent, - MyAccountVideosComponent, - MyAccountVideoChannelsComponent, - MyAccountVideoChannelCreateComponent, - MyAccountVideoChannelUpdateComponent - ], - - exports: [ - MyAccountComponent - ], - - providers: [] -}) -export class MyAccountModule { } -- cgit v1.2.3