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

20 lines
690 B
JavaScript
Raw Normal View History

2020-05-24 23:13:21 +05:30
import { s__, __ } from '~/locale';
2018-10-15 14:42:47 +05:30
export const CANCEL_REQUEST = 'CANCEL_REQUEST';
export const PIPELINES_TABLE = 'PIPELINES_TABLE';
2019-12-04 20:38:33 +05:30
export const LAYOUT_CHANGE_DELAY = 300;
2020-05-24 23:13:21 +05:30
export const FILTER_PIPELINES_SEARCH_DELAY = 200;
export const ANY_TRIGGER_AUTHOR = 'Any';
2019-12-26 22:10:19 +05:30
export const TestStatus = {
FAILED: 'failed',
SKIPPED: 'skipped',
SUCCESS: 'success',
};
2020-05-24 23:13:21 +05:30
export const FETCH_AUTHOR_ERROR_MESSAGE = __('There was a problem fetching project users.');
export const FETCH_BRANCH_ERROR_MESSAGE = __('There was a problem fetching project branches.');
export const RAW_TEXT_WARNING = s__(
'Pipeline|Raw text search is not currently supported. Please use the available search tokens.',
);