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

mock_data.js « ide « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c6d75ab5e4bae8bfca6a222dd122179aeae1ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// eslint-disable-next-line import/prefer-default-export
export const projectData = {
  id: 1,
  name: 'abcproject',
  web_url: '',
  avatar_url: '',
  path: '',
  name_with_namespace: 'namespace/abcproject',
  branches: {
    master: {
      treeId: 'abcproject/master',
    },
  },
  mergeRequests: {},
};