mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
refactor(image-details): place imageLayer model under models/docker
This commit is contained in:
parent
317303fc43
commit
b3f4c6f751
1 changed files with 0 additions and 0 deletions
8
app/models/docker/imageLayer.js
Normal file
8
app/models/docker/imageLayer.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
function ImageLayerViewModel(data) {
|
||||
this.Id = data.Id;
|
||||
this.Created = data.Created;
|
||||
this.CreatedBy = data.CreatedBy;
|
||||
this.Size = data.Size;
|
||||
this.Comment = data.Comment;
|
||||
this.Tags = data.Tags;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue