user-profile.module.ts 1.1KB

12345678910111213141516171819202122232425262728293031
  1. import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
  2. import { RouterModule } from '@angular/router';
  3. import { ZipConnectSharedModule } from 'app/shared';
  4. import { ZipConnectAdminModule } from 'app/admin/admin.module';
  5. import {
  6. UserProfileComponent,
  7. UserProfileDetailComponent,
  8. UserProfileUpdateComponent,
  9. UserProfileDeletePopupComponent,
  10. UserProfileDeleteDialogComponent,
  11. userProfileRoute,
  12. userProfilePopupRoute
  13. } from './';
  14. const ENTITY_STATES = [...userProfileRoute, ...userProfilePopupRoute];
  15. @NgModule({
  16. imports: [ZipConnectSharedModule, ZipConnectAdminModule, RouterModule.forChild(ENTITY_STATES)],
  17. declarations: [
  18. UserProfileComponent,
  19. UserProfileDetailComponent,
  20. UserProfileUpdateComponent,
  21. UserProfileDeleteDialogComponent,
  22. UserProfileDeletePopupComponent
  23. ],
  24. entryComponents: [UserProfileComponent, UserProfileUpdateComponent, UserProfileDeleteDialogComponent, UserProfileDeletePopupComponent],
  25. schemas: [CUSTOM_ELEMENTS_SCHEMA]
  26. })
  27. export class ZipConnectUserProfileModule {}