Files
dspace-angular/src/config/item-config.interface.ts
nibou230 2b77e4a90d Moved showAccessStatus from UI to item config
Renamed item-page to item to make it generic
2022-05-04 11:17:25 -04:00

10 lines
240 B
TypeScript

import { Config } from './config.interface';
export interface ItemConfig extends Config {
edit: {
undoTimeout: number;
};
// This is used to show the access status label of items in results lists
showAccessStatuses: boolean;
}