summaryrefslogtreecommitdiff
path: root/spec/frontend/invite_members/mock_data/api_response_data.js
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];