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

mock_data.js « groups_list « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08ee962892c8b866a3fae1a45b7d7b30cf1b1be7 (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
import { ACTION_EDIT, ACTION_DELETE } from '~/vue_shared/components/list_actions/constants';

export const groups = [
  {
    id: 1,
    fullName: 'Gitlab Org',
    parent: null,
    webUrl: 'http://127.0.0.1:3000/groups/gitlab-org',
    descriptionHtml:
      '<p data-sourcepos="1:1-1:64" dir="auto">Dolorem dolorem omnis impedit cupiditate pariatur officia velit. Fusce eget orci a ipsum tempus vehicula. Donec rhoncus ante sed lacus pharetra, vitae imperdiet felis lobortis. Donec maximus dapibus orci, sit amet euismod dolor rhoncus vel. In nec mauris nibh.</p>',
    avatarUrl: null,
    descendantGroupsCount: 1,
    projectsCount: 1,
    groupMembersCount: 2,
    visibility: 'internal',
    accessLevel: {
      integerValue: 10,
    },
    editPath: 'http://127.0.0.1:3000/groups/gitlab-org/-/edit',
    availableActions: [ACTION_EDIT, ACTION_DELETE],
  },
  {
    id: 2,
    fullName: 'Gitlab Org / test subgroup',
    parent: {
      id: 1,
    },
    webUrl: 'http://127.0.0.1:3000/groups/gitlab-org/test-subgroup',
    descriptionHtml: '',
    avatarUrl: null,
    descendantGroupsCount: 4,
    projectsCount: 4,
    groupMembersCount: 4,
    visibility: 'private',
    accessLevel: {
      integerValue: 20,
    },
    editPath: 'http://127.0.0.1:3000/groups/gitlab-org/test-subgroup/-/edit',
    availableActions: [ACTION_EDIT, ACTION_DELETE],
  },
];