e270366d84
This makes it more explicit that an environment is not a stop action, but instead is merely contains a stop action.
103 lines
2.6 KiB
JavaScript
103 lines
2.6 KiB
JavaScript
export const environmentsList = [
|
|
{
|
|
name: 'DEV',
|
|
size: 1,
|
|
id: 7,
|
|
state: 'available',
|
|
external_url: null,
|
|
environment_type: null,
|
|
last_deployment: null,
|
|
has_stop_action: false,
|
|
environment_path: '/root/review-app/environments/7',
|
|
stop_path: '/root/review-app/environments/7/stop',
|
|
created_at: '2017-01-31T10:53:46.894Z',
|
|
updated_at: '2017-01-31T10:53:46.894Z',
|
|
},
|
|
{
|
|
folderName: 'build',
|
|
size: 5,
|
|
id: 12,
|
|
name: 'build/update-README',
|
|
state: 'available',
|
|
external_url: null,
|
|
environment_type: 'build',
|
|
last_deployment: null,
|
|
has_stop_action: false,
|
|
environment_path: '/root/review-app/environments/12',
|
|
stop_path: '/root/review-app/environments/12/stop',
|
|
created_at: '2017-02-01T19:42:18.400Z',
|
|
updated_at: '2017-02-01T19:42:18.400Z',
|
|
},
|
|
];
|
|
|
|
export const serverData = [
|
|
{
|
|
name: 'DEV',
|
|
size: 1,
|
|
latest: {
|
|
id: 7,
|
|
name: 'DEV',
|
|
state: 'available',
|
|
external_url: null,
|
|
environment_type: null,
|
|
last_deployment: null,
|
|
has_stop_action: false,
|
|
environment_path: '/root/review-app/environments/7',
|
|
stop_path: '/root/review-app/environments/7/stop',
|
|
created_at: '2017-01-31T10:53:46.894Z',
|
|
updated_at: '2017-01-31T10:53:46.894Z',
|
|
},
|
|
},
|
|
{
|
|
name: 'build',
|
|
size: 5,
|
|
latest: {
|
|
id: 12,
|
|
name: 'build/update-README',
|
|
state: 'available',
|
|
external_url: null,
|
|
environment_type: 'build',
|
|
last_deployment: null,
|
|
has_stop_action: false,
|
|
environment_path: '/root/review-app/environments/12',
|
|
stop_path: '/root/review-app/environments/12/stop',
|
|
created_at: '2017-02-01T19:42:18.400Z',
|
|
updated_at: '2017-02-01T19:42:18.400Z',
|
|
},
|
|
},
|
|
];
|
|
|
|
export const environment = {
|
|
name: 'DEV',
|
|
size: 1,
|
|
latest: {
|
|
id: 7,
|
|
name: 'DEV',
|
|
state: 'available',
|
|
external_url: null,
|
|
environment_type: null,
|
|
last_deployment: null,
|
|
has_stop_action: false,
|
|
environment_path: '/root/review-app/environments/7',
|
|
stop_path: '/root/review-app/environments/7/stop',
|
|
created_at: '2017-01-31T10:53:46.894Z',
|
|
updated_at: '2017-01-31T10:53:46.894Z',
|
|
folder_path: '/root/review-app/environments/7',
|
|
},
|
|
};
|
|
|
|
export const folder = {
|
|
folderName: 'build',
|
|
size: 5,
|
|
id: 12,
|
|
name: 'build/update-README',
|
|
state: 'available',
|
|
external_url: null,
|
|
environment_type: 'build',
|
|
last_deployment: null,
|
|
has_stop_action: false,
|
|
environment_path: '/root/review-app/environments/12',
|
|
stop_path: '/root/review-app/environments/12/stop',
|
|
created_at: '2017-02-01T19:42:18.400Z',
|
|
updated_at: '2017-02-01T19:42:18.400Z',
|
|
};
|