foreman-tasks 0.10.7 → 0.10.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/db/seeds.d/61-foreman_tasks_bookmarks.rb +1 -1
- data/lib/foreman_tasks/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 517f4fe1176d5f003fda0b4e9e85631b932ae537
|
4
|
+
data.tar.gz: 4770f771d8f0974a3527e43eae421bbf47b40a77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fcba604b31584a5cb1929cd4acbcfee621abb3e688cb91a30336dbd0bbabf849363acf32c4f3ce4dbd7dd714e6bdb80eca5d4495fe1a4c09517c3b41056a6728
|
7
|
+
data.tar.gz: 8a413be826f98c0a45ba60ea6a86f9a6e6807ea96e54d4a5b6fa7de28733acf169ceed1e79e55e042be85ce218943ecc01f7c531ac93a5e473dc60867795cb2d
|
@@ -5,7 +5,7 @@ Bookmark.without_auditing do
|
|
5
5
|
|
6
6
|
].each do |item|
|
7
7
|
next if Bookmark.where(:name => item[:name]).first
|
8
|
-
next if audit_modified? Bookmark, item[:name]
|
8
|
+
next if SeedHelper.audit_modified? Bookmark, item[:name]
|
9
9
|
b = Bookmark.create({ :controller => 'foreman_tasks_tasks', :public => true }.merge(item))
|
10
10
|
raise "Unable to create bookmark: #{format_errors b}" if b.nil? || b.errors.any?
|
11
11
|
end
|