mirror of
https://github.com/portainer/portainer.git
synced 2025-07-30 18:59:41 +02:00
8 lines
No EOL
221 B
JavaScript
8 lines
No EOL
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, ' ');
|
|
} |