mirror of
https://github.com/portainer/portainer.git
synced 2025-07-20 05:49:40 +02:00
* feat(volume-creation): add plugin support * feat(plugins): only use systemInfo to retrieve plugins when API version < 1.25 * refactor(createVolume): remove unused dependencies
9 lines
361 B
JavaScript
9 lines
361 B
JavaScript
// This model is based on https://github.com/moby/moby/blob/0ac25dfc751fa4304ab45afd5cd8705c2235d101/api/types/plugin.go#L8-L31
|
|
// instead of the official documentation.
|
|
// See: https://github.com/moby/moby/issues/34241
|
|
function PluginViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Name = data.Name;
|
|
this.Enabled = data.Enabled;
|
|
this.Config = data.Config;
|
|
}
|