Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « pipeline_new « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6c9f3cb74634c9a17144608d63afc443bc40c03 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { DEFAULT_DEBOUNCE_AND_THROTTLE_MS } from '~/lib/utils/constants';

export const VARIABLE_TYPE = 'env_var';
export const FILE_TYPE = 'file';
export const DEBOUNCE_REFS_SEARCH_MS = DEFAULT_DEBOUNCE_AND_THROTTLE_MS;
export const CONFIG_VARIABLES_TIMEOUT = 5000;
export const BRANCH_REF_TYPE = 'branch';
export const TAG_REF_TYPE = 'tag';

export const CC_VALIDATION_REQUIRED_ERROR =
  'Credit card required to be on file in order to create a pipeline';