mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-13 03:36:48 +00:00
13 lines
424 B
TypeScript
13 lines
424 B
TypeScript
import { DatasetEntity } from '@datahub/data-models/entity/dataset/dataset-entity';
|
|
|
|
// List of entities that have Change Management enabled as part of Institutional memory
|
|
export const changeManagementEnabledEntityList: Array<string> = [DatasetEntity.displayName];
|
|
|
|
/**
|
|
* Types of optional recipients
|
|
*/
|
|
export enum RecipientType {
|
|
IndividualRecipient = 'individualRecipient',
|
|
DistributionList = 'distributionList'
|
|
}
|