mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { SharedModule } from '../shared/shared.module';
|
|
import { ProfilePageRoutingModule } from './profile-page-routing.module';
|
|
import { ProfilePageComponent } from './profile-page.component';
|
|
import { ProfilePageMetadataFormComponent } from './profile-page-metadata-form/profile-page-metadata-form.component';
|
|
import { ProfilePageSecurityFormComponent } from './profile-page-security-form/profile-page-security-form.component';
|
|
import { ProfilePageResearcherFormComponent } from './profile-page-researcher-form/profile-page-researcher-form.component';
|
|
import { ThemedProfilePageComponent } from './themed-profile-page.component';
|
|
import { FormModule } from '../shared/form/form.module';
|
|
import { UiSwitchModule } from 'ngx-ui-switch';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ProfilePageRoutingModule,
|
|
CommonModule,
|
|
SharedModule,
|
|
FormModule,
|
|
UiSwitchModule
|
|
],
|
|
exports: [
|
|
ProfilePageComponent,
|
|
ThemedProfilePageComponent,
|
|
ProfilePageMetadataFormComponent,
|
|
ProfilePageSecurityFormComponent,
|
|
ProfilePageResearcherFormComponent
|
|
],
|
|
declarations: [
|
|
ProfilePageComponent,
|
|
ThemedProfilePageComponent,
|
|
ProfilePageMetadataFormComponent,
|
|
ProfilePageSecurityFormComponent,
|
|
ProfilePageResearcherFormComponent
|
|
]
|
|
})
|
|
export class ProfilePageModule {
|
|
|
|
}
|