12345678910111213141516171819202122232425262728293031 |
- import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
- import { RouterModule } from '@angular/router';
-
- import { ZipConnectSharedModule } from 'app/shared';
- import { ZipConnectAdminModule } from 'app/admin/admin.module';
- import {
- UserProfileComponent,
- UserProfileDetailComponent,
- UserProfileUpdateComponent,
- UserProfileDeletePopupComponent,
- UserProfileDeleteDialogComponent,
- userProfileRoute,
- userProfilePopupRoute
- } from './';
-
- const ENTITY_STATES = [...userProfileRoute, ...userProfilePopupRoute];
-
- @NgModule({
- imports: [ZipConnectSharedModule, ZipConnectAdminModule, RouterModule.forChild(ENTITY_STATES)],
- declarations: [
- UserProfileComponent,
- UserProfileDetailComponent,
- UserProfileUpdateComponent,
- UserProfileDeleteDialogComponent,
- UserProfileDeletePopupComponent
- ],
- entryComponents: [UserProfileComponent, UserProfileUpdateComponent, UserProfileDeleteDialogComponent, UserProfileDeletePopupComponent],
- schemas: [CUSTOM_ELEMENTS_SCHEMA]
- })
- export class ZipConnectUserProfileModule {}
|