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

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

// Debounce delay in milliseconds
export const DEBOUNCE_TOGGLE_DELAY = 1000;

export const ERROR_MESSAGE = __('Refresh the page and try again.');

// runner setting options
export const ENABLED = 'enabled';
export const DISABLED = 'disabled_and_unoverridable';
export const ALLOW_OVERRIDE = 'disabled_with_override';