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

mock_data.js « users « organizations « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f159c70c2c06e9c325aadb808c06b521039e63c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export const MOCK_ORGANIZATION_GID = 'gid://gitlab/Organizations::Organization/1';

export const MOCK_USERS = [
  {
    badges: [],
    id: 'gid://gitlab/Organizations::OrganizationUser/3',
    user: { id: 'gid://gitlab/User/3' },
  },
  {
    badges: [],
    id: 'gid://gitlab/Organizations::OrganizationUser/2',
    user: { id: 'gid://gitlab/User/2' },
  },
  {
    badges: [
      { text: 'Admin', variant: 'success' },
      { text: "It's you!", variant: 'muted' },
    ],
    id: 'gid://gitlab/Organizations::OrganizationUser/1',
    user: { id: 'gid://gitlab/User/1' },
  },
];