mirror of https://github.com/portainer/portainer
8 lines
221 B
JavaScript
8 lines
221 B
JavaScript
|
import _ from 'lodash-es';
|
||
|
|
||
|
export function RegistryImageLayerViewModel(order, data) {
|
||
|
this.Order = order;
|
||
|
this.Id = data.id;
|
||
|
this.Created = data.created;
|
||
|
this.CreatedBy = _.join(data.container_config.Cmd, ' ');
|
||
|
}
|