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

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

// eslint-disable import/prefer-default-export
export const ADD_CI_VARIABLE_MODAL_ID = 'add-ci-variable';

export const displayText = {
  variableText: __('Var'),
  fileText: __('File'),
  allEnvironmentsText: __('All'),
};

export const types = {
  variableType: 'env_var',
  fileType: 'file',
  allEnvironmentsType: '*',
};