mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 13:33:03 +00:00
19 lines
465 B
TypeScript
19 lines
465 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { Context } from '../../core/shared/context.model';
|
|
|
|
@Component({
|
|
selector: 'ds-admin-search-page',
|
|
templateUrl: './admin-search-page.component.html',
|
|
styleUrls: ['./admin-search-page.component.scss']
|
|
})
|
|
|
|
/**
|
|
* Component that represents a search page for administrators
|
|
*/
|
|
export class AdminSearchPageComponent {
|
|
/**
|
|
* The context of this page
|
|
*/
|
|
context: Context = Context.AdminSearch;
|
|
}
|