debian-mirror-gitlab/spec/frontend/clusters/services/mock_data.js

20 lines
442 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
const CLUSTERS_MOCK_DATA = {
GET: {
'/gitlab-org/gitlab-shell/clusters/1/status.json': {
data: {
status: 'errored',
status_reason: 'Failed to request to CloudPlatform.',
2018-11-08 19:23:39 +05:30
},
},
'/gitlab-org/gitlab-shell/clusters/2/status.json': {
data: {
status: 'errored',
status_reason: 'Failed to request to CloudPlatform.',
2018-03-17 18:26:18 +05:30
},
},
},
2021-09-30 23:02:18 +05:30
POST: {},
2019-07-07 11:18:12 +05:30
};
2021-09-30 23:02:18 +05:30
export { CLUSTERS_MOCK_DATA };