wco_models 3.1.0.196 → 3.1.0.197
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/app/models/wco_email/email_filter.rb +2 -2
- 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: df847f3f11917d96587bce5d3b58018c27215956a43a7bf44a34a04966f750b6
|
4
|
+
data.tar.gz: 0c88c176cd9befa80e849bf60b6e69b2d49e79da37fd8377f07a74b1f7a22010
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd47844f69a043b3cd9ed19db47c8ca52db44568788e4bfefdd14c66d31bdce1f6cd0ea66bc3a526d1bb546d75f50cf35a586ebba25542e94f5d8dfee4239885
|
7
|
+
data.tar.gz: 3a7e32b323db4f08da4b355c9602206c6c2f3a196683f2ef41ca5e274cd5159f17b79fa702981d59d49857a332d733f8d05c2cd227f15c6326f0da8d4c6fb411
|
@@ -23,7 +23,7 @@ class WcoEmail::EmailFilter
|
|
23
23
|
|
24
24
|
has_many :actions, class_name: '::WcoEmail::EmailFilterAction', inverse_of: :email_filter
|
25
25
|
accepts_nested_attributes_for :actions, allow_destroy: true
|
26
|
-
validate :validate_actions
|
26
|
+
# validate :validate_actions
|
27
27
|
def validate_actions
|
28
28
|
if actions.length == 0
|
29
29
|
errors.add(:actions, 'must be present')
|
@@ -38,7 +38,7 @@ class WcoEmail::EmailFilter
|
|
38
38
|
has_many :skip_conditions, class_name: '::WcoEmail::EmailFilterCondition', inverse_of: :email_skip_filter
|
39
39
|
accepts_nested_attributes_for :skip_conditions, allow_destroy: true
|
40
40
|
|
41
|
-
validate :validate_conditions
|
41
|
+
# validate :validate_conditions
|
42
42
|
def validate_conditions
|
43
43
|
if conditions.length + skip_conditions.length == 0
|
44
44
|
errors.add(:conditions, 'Either conditions or skip conditions must be present.')
|