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

api_response_data.js « mock_data « invite_members « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9509422b6037a122ed6c668a1e84a52d762e8c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const project1 = {
  id: 1,
  name: 'Project One',
  name_with_namespace: 'Project One',
  avatar_url: 'test1',
};
export const project2 = {
  id: 2,
  name: 'Project One',
  name_with_namespace: 'Project Two',
  avatar_url: 'test2',
};
export const allProjects = [project1, project2];