pager_tree-integrations 1.1.4 → 1.1.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48ec1c4823f433b06f6d208be7148941457bfd8e62abe4f8bd5daf7ff502cc4a
|
4
|
+
data.tar.gz: a13190685045dd29141360b31e232e40a7fe9628ccbdbf707047cfad3a25ef1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95cab16e6759fc7b013e6ab16611d6c1441503b688e8e26a201adcc3647dbfe63e557b6a80b429288278014fcb9bb2993f736de2687ef2fc9b3e039cc325a650
|
7
|
+
data.tar.gz: b77187a86484fe1e6e75f42dfb00c33f622d103b8d4956d0603e24869ee672a96c52b0415371f6b35e85d04005e23f8977ae3445107ea6908b507b8d48a4e244
|
@@ -10,8 +10,8 @@ module PagerTree::Integrations
|
|
10
10
|
validates :option_dedup_threads, inclusion: {in: [true, false]}
|
11
11
|
|
12
12
|
after_initialize do
|
13
|
-
self.option_allow_spam
|
14
|
-
self.option_dedup_threads
|
13
|
+
self.option_allow_spam = false if option_allow_spam.nil?
|
14
|
+
self.option_dedup_threads = true if option_dedup_threads.nil?
|
15
15
|
end
|
16
16
|
|
17
17
|
# SPECIAL: override integration endpoint
|