[CST-5307] Migrate Researcher Profile (Angular).

This commit is contained in:
Pratik Rajkotiya
2022-04-12 17:04:32 +05:30
parent 45887154b6
commit 88c324cb5a
21 changed files with 1027 additions and 10 deletions

View File

@@ -5,25 +5,33 @@ 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
FormModule,
UiSwitchModule
],
exports: [
ProfilePageComponent,
ThemedProfilePageComponent,
ProfilePageMetadataFormComponent,
ProfilePageSecurityFormComponent,
ProfilePageMetadataFormComponent
ProfilePageResearcherFormComponent
],
declarations: [
ProfilePageComponent,
ThemedProfilePageComponent,
ProfilePageMetadataFormComponent,
ProfilePageSecurityFormComponent
ProfilePageSecurityFormComponent,
ProfilePageResearcherFormComponent
]
})
export class ProfilePageModule {