forked from DSpace/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Included user-menu component in custom theme.
- Loading branch information
Showing
4 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions
15
src/themes/custom/app/shared/auth-nav-menu/user-menu/user-menu.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { UserMenuComponent as BaseComponent } from '../../../../../../app/shared/auth-nav-menu/user-menu/user-menu.component'; | ||
|
||
/** | ||
* Component representing the {@link UserMenuComponent} of a page | ||
*/ | ||
@Component({ | ||
selector: 'ds-user-menu', | ||
// templateUrl: 'user-menu.component.html', | ||
templateUrl: '../../../../../../app/shared/auth-nav-menu/user-menu/user-menu.component.html', | ||
// styleUrls: ['user-menu.component.scss'], | ||
styleUrls: ['../../../../../../app/shared/auth-nav-menu/user-menu/user-menu.component.scss'], | ||
}) | ||
export class UserMenuComponent extends BaseComponent { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters