eco-helpers 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/eco/api/common/class_helpers.rb +2 -2
- data/lib/eco/api/common/people/person_entry.rb +1 -1
- data/lib/eco/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8bb65fa77866287c89c165a152c4ae1be166ba503c84bc82b5cd0bc4f170959
|
4
|
+
data.tar.gz: f929153851479707bc1cad9a44842976c278905dad9068ebeeedce82be5151c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbacc11118acf97dbc8cc8d17505ae5c436c59b4ebb68e50fcf10e388ce8212b6a520c3b81aea6c705fba67ce112ee6850b1d4421da07c20da5f3a16e1929f07
|
7
|
+
data.tar.gz: '0087ea49d27a64fe48736231f6a65cac4c1ac65308ff5f17232e4d5a3928170ba9d7b758f6ea991766a0bf9d3c61e9a75d42c151c4f3dd6da63d55d7d7ce0b9b'
|
@@ -18,7 +18,7 @@ module Eco
|
|
18
18
|
begin
|
19
19
|
Kernel.const_get(klass)
|
20
20
|
rescue NameError => e
|
21
|
-
raise
|
21
|
+
raise if exception
|
22
22
|
end
|
23
23
|
when Symbol
|
24
24
|
resolve_class(self.send(klass))
|
@@ -26,7 +26,7 @@ module Eco
|
|
26
26
|
raise "Unknown class: #{klass}" if exception
|
27
27
|
end
|
28
28
|
end
|
29
|
-
|
29
|
+
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|
@@ -266,7 +266,7 @@ module Eco
|
|
266
266
|
|
267
267
|
def _get_from_account (person, attr)
|
268
268
|
return nil if !person.account
|
269
|
-
multiple = ["policy_group_ids", "filter_tags"].include?(attr)
|
269
|
+
multiple = ["policy_group_ids", "filter_tags", "login_provider_ids"].include?(attr)
|
270
270
|
value = person.account.send(attr)
|
271
271
|
value = @person_parser.serialize(:multiple, value) if multiple
|
272
272
|
value
|
data/lib/eco/version.rb
CHANGED