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

mock_data.js « components « learn_gitlab « projects « pages « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6ee2b00c8e24d32ed7ca00c08e41df55d04a66a (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
export const testActions = {
  gitWrite: {
    url: 'http://example.com/',
    completed: true,
    svg: 'http://example.com/images/illustration.svg',
  },
  userAdded: {
    url: 'http://example.com/',
    completed: true,
    svg: 'http://example.com/images/illustration.svg',
  },
  pipelineCreated: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  trialStarted: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  codeOwnersEnabled: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  requiredMrApprovalsEnabled: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  mergeRequestCreated: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  securityScanEnabled: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  issueCreated: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
};