2020-01-01 13:55:28 +05:30
|
|
|
export const MAX_MILESTONES_TO_DISPLAY = 5;
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
export const BACK_URL_PARAM = 'back_url';
|
2020-06-23 00:09:42 +05:30
|
|
|
|
|
|
|
export const ASSET_LINK_TYPE = Object.freeze({
|
|
|
|
OTHER: 'other',
|
|
|
|
IMAGE: 'image',
|
|
|
|
PACKAGE: 'package',
|
|
|
|
RUNBOOK: 'runbook',
|
|
|
|
});
|
|
|
|
|
|
|
|
export const DEFAULT_ASSET_LINK_TYPE = ASSET_LINK_TYPE.OTHER;
|