39 lines
834 B
JavaScript
39 lines
834 B
JavaScript
export const reposServerResponse = [
|
|
{
|
|
destroy_path: 'path',
|
|
id: '123',
|
|
location: 'location',
|
|
path: 'foo',
|
|
tags_path: 'tags_path',
|
|
},
|
|
{
|
|
destroy_path: 'path_',
|
|
id: '456',
|
|
location: 'location_',
|
|
path: 'bar',
|
|
tags_path: 'tags_path_',
|
|
},
|
|
];
|
|
|
|
export const registryServerResponse = [
|
|
{
|
|
name: 'centos7',
|
|
short_revision: 'b118ab5b0',
|
|
revision: 'b118ab5b0e90b7cb5127db31d5321ac14961d097516a8e0e72084b6cdc783b43',
|
|
total_size: 679,
|
|
layers: 19,
|
|
location: 'location',
|
|
created_at: 1505828744434,
|
|
destroy_path: 'path_',
|
|
},
|
|
{
|
|
name: 'centos6',
|
|
short_revision: 'b118ab5b0',
|
|
revision: 'b118ab5b0e90b7cb5127db31d5321ac14961d097516a8e0e72084b6cdc783b43',
|
|
total_size: 679,
|
|
layers: 19,
|
|
location: 'location',
|
|
created_at: 1505828744434,
|
|
},
|
|
];
|