foreman_snapshot_management 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b21ddce3f89248da10faf11e3c9ed617c68b9500be5ef2f0a4557462e670912c
4
- data.tar.gz: e345def34460802d4491dded6341ff0089c733cbeb1ce7b925e321f0c8be8caf
3
+ metadata.gz: 852f360b2e273ab1e59ba5b2e7960633cdfc169acd60e98f8fc9abeb2616a098
4
+ data.tar.gz: 9c292f218d3f01ef7e3cba1eab5caaac82e94a65891d88a1b11f19952da39c8a
5
5
  SHA512:
6
- metadata.gz: 70868762e401d992c5aeeda419491ccbe294f57c20bd87c4eab30c9bb7299da128f6f50a8ab640fcf83058fd62018c1aecd851ccde34b372656fb72b40e3179e
7
- data.tar.gz: 2542bb32f1efb8ba220b8a63342313e73994990336252529a5496dc3f95dd8e5c8e41da322042042b617bb8f46bd213141821d94ea1cbfc19fdbd0c7b3210de1
6
+ metadata.gz: ca9602895984df366f86addc657df08ce8c2c2e69fedd9d554115829f36bd956838fb05d2eb3a7d5a6c9a4d0af9f5385ac40573804bb54e9766be6014a49acf9
7
+ data.tar.gz: 949d446c4f72c2ad58c4098d5866d53259151bb35597444f402b3fd08a3d68ba5f4e76a975bab5be16098b13e4ebbb16531b841869cbd6e53ca31ff99cd924ae
@@ -6,7 +6,7 @@ module Foreman::Controller::Parameters::Snapshot
6
6
  class_methods do
7
7
  def snapshot_params_filter
8
8
  Foreman::ParameterFilter.new(::ForemanSnapshotManagement::Snapshot).tap do |filter|
9
- filter.permit :name, :description
9
+ filter.permit :name, :description, :include_ram, :host_id
10
10
  end
11
11
  end
12
12
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ForemanSnapshotManagement
4
- VERSION = '2.0.0'
4
+ VERSION = '2.0.1'
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foreman_snapshot_management",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Foreman-plugin to manage snapshots in a virtual-hardware environments.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -38,7 +38,7 @@ const SnapshotForm = ({
38
38
 
39
39
  const handleSubmit = async (values, actions) => {
40
40
  const submitValues = {
41
- includeRam: values.includeRam || false,
41
+ include_ram: values.includeRam || false,
42
42
  snapshot: {
43
43
  name: values.name,
44
44
  description: values.description || '',
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_snapshot_management
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ATIX AG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-10 00:00:00.000000000 Z
11
+ date: 2021-07-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Foreman-plugin to manage snapshots in a virtual-hardware environments.
14
14
  email:
@@ -51,7 +51,6 @@ files:
51
51
  - locale/de/LC_MESSAGES/foreman_snapshot_management.mo
52
52
  - locale/de/foreman_snapshot_management.po
53
53
  - locale/en/LC_MESSAGES/foreman_snapshot_management.mo
54
- - locale/en/foreman_snapshot_management.edit.po
55
54
  - locale/en/foreman_snapshot_management.po
56
55
  - locale/foreman_snapshot_management.pot
57
56
  - locale/gemspec.rb
File without changes