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

mock_data.js « index « integrations « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65c1e5643e99f2666492056f8613a400e82850c8 (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
export const mockActiveIntegrations = [
  {
    active: true,
    configured: true,
    title: 'Asana',
    description: 'Asana - Teamwork without email',
    updated_at: '2021-03-18T00:27:09.634Z',
    edit_path:
      '/gitlab-qa-sandbox-group/project_with_jenkins_6a55a67c-57c6ed0597c9319a/-/services/asana/edit',
    name: 'asana',
  },
  {
    active: true,
    configured: true,
    title: 'Jira',
    description: 'Jira issue tracker',
    updated_at: '2021-01-29T06:41:25.806Z',
    edit_path:
      '/gitlab-qa-sandbox-group/project_with_jenkins_6a55a67c-57c6ed0597c9319a/-/services/jira/edit',
    name: 'jira',
  },
];

export const mockInactiveIntegrations = [
  {
    active: false,
    configured: false,
    title: 'Webex Teams',
    description: 'Receive event notifications in Webex Teams',
    updated_at: null,
    edit_path:
      '/gitlab-qa-sandbox-group/project_with_jenkins_6a55a67c-57c6ed0597c9319a/-/services/webex_teams/edit',
    name: 'webex_teams',
  },
  {
    active: false,
    configured: false,
    title: 'YouTrack',
    description: 'YouTrack issue tracker',
    updated_at: null,
    edit_path:
      '/gitlab-qa-sandbox-group/project_with_jenkins_6a55a67c-57c6ed0597c9319a/-/services/youtrack/edit',
    name: 'youtrack',
  },
  {
    active: false,
    configured: false,
    title: 'Atlassian Bamboo CI',
    description: 'A continuous integration and build server',
    updated_at: null,
    edit_path:
      '/gitlab-qa-sandbox-group/project_with_jenkins_6a55a67c-57c6ed0597c9319a/-/services/bamboo/edit',
    name: 'bamboo',
  },
  {
    active: false,
    configured: false,
    title: 'Prometheus',
    description: 'A monitoring tool for Kubernetes',
    updated_at: null,
    edit_path:
      '/gitlab-qa-sandbox-group/project_with_jenkins_6a55a67c-57c6ed0597c9319a/-/services/prometheus/edit',
    name: 'prometheus',
  },
];