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

mock_data.js « branches « jira_connect « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 742ab5392c87129d99aedce0805c6abdc895fb9b (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
export const mockProjects = [
  {
    id: 'test',
    name: 'test',
    nameWithNamespace: 'test',
    avatarUrl: 'https://gitlab.com',
    path: 'test-path',
    fullPath: 'test-path',
    repository: {
      empty: false,
    },
    userPermissions: {
      pushCode: true,
    },
  },
  {
    id: 'gitlab',
    name: 'GitLab',
    nameWithNamespace: 'gitlab-org/gitlab',
    avatarUrl: 'https://gitlab.com',
    path: 'gitlab',
    fullPath: 'gitlab-org/gitlab',
    repository: {
      empty: false,
    },
    userPermissions: {
      pushCode: true,
    },
  },
];