debian-mirror-gitlab/spec/frontend/jira_connect/subscriptions/mock_data.js

24 lines
556 B
JavaScript
Raw Normal View History

2021-03-08 18:12:59 +05:30
export const mockGroup1 = {
id: 1,
avatar_url: 'avatar.png',
name: 'Gitlab Org',
full_name: 'Gitlab Org',
2021-03-11 19:13:27 +05:30
full_path: 'gitlab-org',
2021-03-08 18:12:59 +05:30
description: 'Open source software to collaborate on code',
};
export const mockGroup2 = {
id: 2,
avatar_url: 'avatar.png',
name: 'Gitlab Com',
full_name: 'Gitlab Com',
2021-03-11 19:13:27 +05:30
full_path: 'gitlab-com',
2021-03-08 18:12:59 +05:30
description: 'For GitLab company related projects',
};
2021-04-29 21:17:54 +05:30
export const mockSubscription = {
group: mockGroup1,
created_at: '2021-04-14T08:52:23.115Z',
unlink_path: '/-/jira_connect/subscriptions/1',
};