mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00

# Conflicts: # src/app/admin/admin-routing.module.ts # src/app/admin/admin-workflow-page/admin-workflow.module.ts # src/themes/custom/lazy-theme.module.ts
25 lines
695 B
TypeScript
25 lines
695 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;
|
|
}
|