mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
77350: wip
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { CreateProfileComponent } from './create-profile.component';
|
||||
import { ThemedComponent } from '../../shared/theme-support/themed.component';
|
||||
|
||||
/**
|
||||
* Themed wrapper for CreateProfileComponent
|
||||
*/
|
||||
@Component({
|
||||
selector: 'ds-themed-create-profile',
|
||||
styleUrls: [],
|
||||
templateUrl: './../../shared/theme-support/themed.component.html'
|
||||
})
|
||||
export class ThemedCreateProfileComponent extends ThemedComponent<CreateProfileComponent> {
|
||||
protected getComponentName(): string {
|
||||
return 'CreateProfileComponent';
|
||||
}
|
||||
|
||||
protected importThemedComponent(themeName: string): Promise<any> {
|
||||
return import(`../../themes/${themeName}/app/register-page/create-profile/create-profile.component`);
|
||||
}
|
||||
|
||||
protected importUnthemedComponent(): Promise<any> {
|
||||
return import(`./create-profile.component`);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user