wco_email 0.1.1.33 → 0.1.1.35
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bec07a4e4ca2d021905fd82003f9447d7f502ca047da8421d259ef927354c64e
|
4
|
+
data.tar.gz: 1c420fefd28598ca53af3806ae1d4bb8975e2f5a9ab472eeffb8ba692896cc7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b88fd7946cec4223d98d83b70e5a3158ecbd28382a2dddc0658f48e60b9cb548065d279944f8d6b7a04568c66edf78c1cce679244370072dddc0d187d77878a
|
7
|
+
data.tar.gz: 6433e52a9e9d25ff43f1e46201ec2b10752bc2c0b5a9cf2fd24d7a6b02a75c1fd2ba469dc54843b2d7aec851257113b1c832d95faefa8599c34d1ffc5d4d41a7
|
@@ -34,7 +34,7 @@ class WcoEmail::EmailFiltersController < WcoEmail::ApplicationController
|
|
34
34
|
def index
|
35
35
|
authorize! :index, WcoEmail::EmailFilter.new
|
36
36
|
@email_filter = WcoEmail::EmailFilter.new
|
37
|
-
@email_filters = WcoEmail::EmailFilter.all
|
37
|
+
@email_filters = WcoEmail::EmailFilter.all.includes( :email_template, :conversations )
|
38
38
|
end
|
39
39
|
|
40
40
|
def new
|
@@ -42,6 +42,11 @@ class WcoEmail::EmailFiltersController < WcoEmail::ApplicationController
|
|
42
42
|
authorize! :new, @email_filter
|
43
43
|
end
|
44
44
|
|
45
|
+
def show
|
46
|
+
@email_filter = WcoEmail::EmailFilter.find params[:id]
|
47
|
+
authorize! :show, @email_filter
|
48
|
+
end
|
49
|
+
|
45
50
|
def update
|
46
51
|
@email_filter = WcoEmail::EmailFilter.find params[:id]
|
47
52
|
authorize! :update, @email_filter
|
@@ -18,15 +18,10 @@
|
|
18
18
|
%tr
|
19
19
|
%th
|
20
20
|
%th
|
21
|
-
%th
|
22
|
-
%th
|
23
|
-
%th
|
24
|
-
|
25
|
-
%th Body Exact
|
26
|
-
%th Kind
|
27
|
-
%th Respond with <br />Email Template
|
28
|
-
%th Email Action <br />(template)
|
29
|
-
%th Tag
|
21
|
+
%th n convs
|
22
|
+
%th Match
|
23
|
+
%th Action
|
24
|
+
|
30
25
|
- @email_filters.each_with_index do |ef, idx|
|
31
26
|
|
32
27
|
%tr
|
@@ -34,19 +29,34 @@
|
|
34
29
|
.gray= idx+1
|
35
30
|
= check_box_tag 'checked'
|
36
31
|
%td
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
%td
|
42
|
-
|
43
|
-
%td
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
32
|
+
.flex-row
|
33
|
+
= link_to '[~]', edit_email_filter_path(ef)
|
34
|
+
= link_to '[view]', email_filter_path(ef)
|
35
|
+
.inline-block= button_to '[x]', email_filter_path(ef), method: :delete, data: { confirm: 'Are you sure?' }
|
36
|
+
%td.n-convs
|
37
|
+
= ef.conversations.length
|
38
|
+
%td.match
|
39
|
+
- if ef.from_regex.present?
|
40
|
+
.a <b>from_regex:</b> `#{ef.from_regex}`
|
41
|
+
- if ef.from_exact.present?
|
42
|
+
.a <b>from_exact:</b> `#{ef.from_exact}`
|
43
|
+
- if ef.subject_regex.present?
|
44
|
+
.a <b>subject_regex:</b> `#{ef.subject_regex}`
|
45
|
+
- if ef.subject_exact.present?
|
46
|
+
.a <b>subject_exact:</b> `#{ef.subject_exact}`
|
47
|
+
- if ef.body_exact.present?
|
48
|
+
.a <b>body_exact:</b> `#{ef.body_exact}`
|
49
|
+
|
50
|
+
%td.action
|
51
|
+
- if ef.kind == EF::KIND_AUTORESPOND_TMPL
|
52
|
+
.a <b>#{EF::KIND_AUTORESPOND_TMPL}:</b> #{ef.email_template&.slug}
|
53
|
+
- if ef.kind == EF::KIND_AUTORESPOND_EACT
|
54
|
+
.a <b>#{EF::KIND_AUTORESPOND_EACT}:</b> #{ef.email_action_template&.slug}
|
55
|
+
- if ef.kind == EF::KIND_ADD_TAG
|
56
|
+
.a <b>#{EF::KIND_ADD_TAG}:</b> #{ef.tag&.slug}
|
57
|
+
- if ef.kind == EF::KIND_REMOVE_TAG
|
58
|
+
.a <b>#{EF::KIND_REMOVE_TAG}:</b> #{ef.tag&.slug}
|
59
|
+
|
50
60
|
-# = paginate @email_filters, param_name: WcoEmail::EmailFilter::PAGE_PARAM_NAME, views_prefix: 'wco'
|
51
61
|
|
52
62
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wco_email
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.1.
|
4
|
+
version: 0.1.1.35
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Pudeyev
|
@@ -400,6 +400,7 @@ files:
|
|
400
400
|
- app/views/wco_email/email_filters/edit.haml
|
401
401
|
- app/views/wco_email/email_filters/index.haml
|
402
402
|
- app/views/wco_email/email_filters/new.haml
|
403
|
+
- app/views/wco_email/email_filters/show.haml
|
403
404
|
- app/views/wco_email/email_templates/_form.haml
|
404
405
|
- app/views/wco_email/email_templates/_form_mini.haml
|
405
406
|
- app/views/wco_email/email_templates/_form_reply_mini.haml
|