summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/releases/constants.js
blob: 953e7b4189cdcefc0dbc2884eaaf3fbc6fd23295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const MAX_MILESTONES_TO_DISPLAY = 5;

export const BACK_URL_PARAM = 'back_url';

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;

export const PAGE_SIZE = 20;