gitlab-org--gitlab-foss/spec/javascripts/environments/mock_data.js.es6

27 lines
562 B
JavaScript
Raw Normal View History

2016-10-25 10:14:08 -04:00
const environmentsList = [
{
"id": 15,
"project_id": 11,
"name": "production",
"external_url": "https://test.com",
"environment_type": null,
2016-10-26 13:17:00 -04:00
"state": "available"
},
{
2016-10-25 10:14:08 -04:00
"id": 18,
"project_id": 11,
"name": "review/test-environment",
"external_url": "http://test1.com",
"environment_type": "review",
2016-10-26 13:17:00 -04:00
"state": "available"
2016-10-26 04:17:32 -04:00
},
{
2016-10-26 13:17:00 -04:00
"id": 19,
2016-10-26 04:17:32 -04:00
"project_id": 11,
"name": "review/test-environment-1",
"external_url": "http://test-1.com",
"environment_type": "review",
2016-10-26 13:17:00 -04:00
"state": "stopped"
2016-10-25 10:14:08 -04:00
}
2016-10-26 04:17:32 -04:00
];