mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 11:03:05 +00:00
23 lines
686 B
TypeScript
23 lines
686 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { Context } from '../../core/shared/context.model';
|
|
import { ThemedConfigurationSearchPageComponent } from '../../search-page/themed-configuration-search-page.component';
|
|
|
|
@Component({
|
|
selector: 'ds-base-admin-workflow-page',
|
|
templateUrl: './admin-workflow-page.component.html',
|
|
styleUrls: ['./admin-workflow-page.component.scss'],
|
|
standalone: true,
|
|
imports: [ThemedConfigurationSearchPageComponent],
|
|
})
|
|
|
|
/**
|
|
* Component that represents a workflow item search page for administrators
|
|
*/
|
|
export class AdminWorkflowPageComponent {
|
|
/**
|
|
* The context of this page
|
|
*/
|
|
context: Context = Context.AdminWorkflowSearch;
|
|
}
|