debian-mirror-gitlab/app/assets/javascripts/releases/constants.js

15 lines
312 B
JavaScript
Raw Normal View History

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;
2021-01-03 14:25:43 +05:30
export const PAGE_SIZE = 20;