mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

# Conflicts: # src/app/profile-page/profile-page.module.ts # src/themes/custom/lazy-theme.module.ts
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import {
|
|
AsyncPipe,
|
|
NgForOf,
|
|
NgIf,
|
|
} from '@angular/common';
|
|
import { Component } from '@angular/core';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { SuggestionsNotificationComponent } from '../../../../app/notifications/suggestions-notification/suggestions-notification.component';
|
|
import { ProfilePageComponent as BaseComponent } from '../../../../app/profile-page/profile-page.component';
|
|
import { ThemedProfilePageMetadataFormComponent } from '../../../../app/profile-page/profile-page-metadata-form/themed-profile-page-metadata-form.component';
|
|
import { ProfilePageResearcherFormComponent } from '../../../../app/profile-page/profile-page-researcher-form/profile-page-researcher-form.component';
|
|
import { ProfilePageSecurityFormComponent } from '../../../../app/profile-page/profile-page-security-form/profile-page-security-form.component';
|
|
import { VarDirective } from '../../../../app/shared/utils/var.directive';
|
|
|
|
@Component({
|
|
selector: 'ds-profile-page',
|
|
// styleUrls: ['./profile-page.component.scss'],
|
|
styleUrls: ['../../../../app/profile-page/profile-page.component.scss'],
|
|
// templateUrl: './profile-page.component.html'
|
|
templateUrl: '../../../../app/profile-page/profile-page.component.html',
|
|
standalone: true,
|
|
imports: [
|
|
ThemedProfilePageMetadataFormComponent,
|
|
ProfilePageSecurityFormComponent,
|
|
SuggestionsNotificationComponent,
|
|
AsyncPipe,
|
|
TranslateModule,
|
|
ProfilePageResearcherFormComponent,
|
|
VarDirective,
|
|
NgIf,
|
|
NgForOf,
|
|
],
|
|
})
|
|
/**
|
|
* Component for a user to edit their profile information
|
|
*/
|
|
export class ProfilePageComponent extends BaseComponent {
|
|
|
|
}
|