mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
/**
|
|
* This enumeration represents all possible ways of representing a group of objects in the UI
|
|
*/
|
|
|
|
export enum Context {
|
|
Undefined = 'undefined',
|
|
ItemPage = 'itemPage',
|
|
Search = 'search',
|
|
Workflow = 'workflow',
|
|
Workspace = 'workspace',
|
|
AdminMenu = 'adminMenu',
|
|
EntitySearchModalWithNameVariants = 'EntitySearchModalWithNameVariants',
|
|
EntitySearchModal = 'EntitySearchModal',
|
|
AdminSearch = 'adminSearch',
|
|
}
|