mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 12:25:22 +02:00
* style(extensions): update extension icons * style(extensions): style update * feat(extensions): update extension UX * style(extensions): update extension style * style(extension-details): update screenshot default size * style(extensions): update overview diagram image * refactor(support): fix support URLs
17 lines
533 B
JavaScript
17 lines
533 B
JavaScript
function ExtensionViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Name = data.Name;
|
|
this.Enabled = data.Enabled;
|
|
this.Description = data.Description;
|
|
this.Price = data.Price;
|
|
this.PriceDescription = data.PriceDescription;
|
|
this.Available = data.Available;
|
|
this.Deal = data.Deal;
|
|
this.ShortDescription = data.ShortDescription;
|
|
this.License = data.License;
|
|
this.Version = data.Version;
|
|
this.UpdateAvailable = data.UpdateAvailable;
|
|
this.ShopURL = data.ShopURL;
|
|
this.Images = data.Images;
|
|
this.Logo = data.Logo;
|
|
}
|