mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
20 lines
616 B
TypeScript
20 lines
616 B
TypeScript
/**
|
|
* This enumeration represents all possible ways of representing a group of objects in the UI
|
|
*/
|
|
|
|
export enum Context {
|
|
Any = 'undefined',
|
|
ItemPage = 'itemPage',
|
|
Search = 'search',
|
|
Workflow = 'workflow',
|
|
Workspace = 'workspace',
|
|
SupervisedItems = 'supervisedWorkspace',
|
|
AdminMenu = 'adminMenu',
|
|
EntitySearchModalWithNameVariants = 'EntitySearchModalWithNameVariants',
|
|
EntitySearchModal = 'EntitySearchModal',
|
|
AdminSearch = 'adminSearch',
|
|
AdminWorkflowSearch = 'adminWorkflowSearch',
|
|
SideBarSearchModal = 'sideBarSearchModal',
|
|
SideBarSearchModalCurrent = 'sideBarSearchModalCurrent',
|
|
}
|