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

mock_data.js « services « ci_variable_list « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89473b57af9ae128cdff5520290c90b04b8b5c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
export default {
  mockVariables: [
    {
      environment_scope: 'All environments',
      id: 113,
      key: 'test_var',
      masked: false,
      protected: false,
      value: 'test_val',
      variable_type: 'Variable',
    },
    {
      environment_scope: 'All environments',
      id: 114,
      key: 'test_var_2',
      masked: false,
      protected: false,
      value: 'test_val_2',
      variable_type: 'Variable',
    },
    {
      environment_scope: 'All environments',
      id: 115,
      key: 'test_var_3',
      masked: false,
      protected: false,
      value: 'test_val_3',
      variable_type: 'Variable',
    },
  ],

  mockVariablesApi: [
    {
      environment_scope: '*',
      id: 113,
      key: 'test_var',
      masked: false,
      protected: false,
      value: 'test_val',
      variable_type: 'env_var',
    },
    {
      environment_scope: '*',
      id: 114,
      key: 'test_var_2',
      masked: false,
      protected: false,
      value: 'test_val_2',
      variable_type: 'file',
    },
  ],

  mockVariablesDisplay: [
    {
      environment_scope: 'All environments',
      id: 113,
      key: 'test_var',
      masked: false,
      protected: false,
      value: 'test_val',
      variable_type: 'Variable',
    },
    {
      environment_scope: 'All environments',
      id: 114,
      key: 'test_var_2',
      masked: false,
      protected: false,
      value: 'test_val_2',
      variable_type: 'File',
    },
  ],

  mockEnvironments: [
    {
      id: 28,
      name: 'staging',
      slug: 'staging',
      external_url: 'https://staging.example.com',
      state: 'available',
    },
    {
      id: 29,
      name: 'production',
      slug: 'production',
      external_url: 'https://production.example.com',
      state: 'available',
    },
  ],
};