Files
dspace-angular/src/themes/custom/app/profile-page/profile-page.component.ts
Alexandre Vryghem ac40726b18 Merge branch 'created-themeable-ProfilePageMetadataFormComponent_contribute-7.6' into minor-themed-component-fixes_contribute-main
# Conflicts:
#	src/app/profile-page/profile-page.module.ts
#	src/themes/custom/lazy-theme.module.ts
2024-04-14 15:14:17 +02:00

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 {
}