ish_models 0.0.33.201 → 0.0.33.203
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/ish/email_context.rb +4 -8
- data/lib/office/email_conversation.rb +14 -4
- 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: d743720d7da4d999732d7d28b69fe0697eaa73423d8fbb8f00866409eb857ed6
|
4
|
+
data.tar.gz: da958d68e0f40daedef7356725afba4a063713315e5ef756396355700f49f710
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 210e40b9e0033207fb621b7d999227b638187f62937836885691b96206b4950ef01c5818d67fbef9fa5b456d5cf41a83b0f9974beda2e677662677315ba46b71
|
7
|
+
data.tar.gz: 6e0519979624398d04c9406f8ade0df6be50fa062f6dc8aafdf1cec5cd4a278efa4a57b7101f0b9023e849f51268da2274d1a188ddff61ad26752dfaadceed2f
|
data/lib/ish/email_context.rb
CHANGED
@@ -73,18 +73,12 @@ class ::Ish::EmailContext
|
|
73
73
|
end
|
74
74
|
|
75
75
|
|
76
|
-
field :lead_id
|
76
|
+
field :lead_id, type: :integer
|
77
77
|
def lead
|
78
78
|
Lead.find lead_id
|
79
79
|
end
|
80
|
-
## @deprecated: use self.lead
|
81
|
-
field :to_email
|
82
80
|
def to_email
|
83
|
-
|
84
|
-
return lead[:email]
|
85
|
-
else
|
86
|
-
return self[:to_email]
|
87
|
-
end
|
81
|
+
return lead[:email]
|
88
82
|
end
|
89
83
|
|
90
84
|
|
@@ -99,3 +93,5 @@ class ::Ish::EmailContext
|
|
99
93
|
end
|
100
94
|
|
101
95
|
end
|
96
|
+
Ctx = ::Ish::EmailContext
|
97
|
+
|
@@ -33,12 +33,17 @@ class Office::EmailConversation
|
|
33
33
|
|
34
34
|
## Tested manually ok, does not pass the spec. @TODO: hire to make pass spec? _vp_ 2023-03-07
|
35
35
|
def add_tag tag
|
36
|
-
|
37
|
-
|
38
|
-
|
36
|
+
case tag.class.name
|
37
|
+
when 'WpTag'
|
38
|
+
;
|
39
|
+
when 'String'
|
40
|
+
tag = WpTag.emailtag(tag)
|
39
41
|
else
|
40
|
-
throw "#add_tag expects a WpTag as the only parameter."
|
42
|
+
throw "#add_tag expects a WpTag or string (eg WpTag::EMAILTAG_INBOX) as the only parameter."
|
41
43
|
end
|
44
|
+
puts! tag, 'tag'
|
45
|
+
self[:wp_term_ids] = ( [ tag.id ] + self[:wp_term_ids] ).uniq
|
46
|
+
self.save!
|
42
47
|
end
|
43
48
|
|
44
49
|
def remove_tag tag
|
@@ -54,6 +59,11 @@ class Office::EmailConversation
|
|
54
59
|
::Office::EmailConversation.where( :wp_term_ids => WpTag.email_inbox_tag.id ).order_by( latest_at: :desc )
|
55
60
|
end
|
56
61
|
|
62
|
+
def self.in_no_trash
|
63
|
+
trash_id = WpTag.emailtag('trash').id
|
64
|
+
return ::Office::EmailConversation.where( :wp_term_ids.ne => trash_id ).order_by( latest_at: :desc )
|
65
|
+
end
|
66
|
+
|
57
67
|
def self.in_emailtag which
|
58
68
|
case which.class.name
|
59
69
|
when 'String'
|