ish_manager 0.1.8.412 → 0.1.8.414
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/assets/stylesheets/ish_manager/application.scss +1 -1
- data/app/assets/stylesheets/ish_manager/email.scss +11 -0
- data/app/controllers/ish_manager/application_controller.rb +1 -0
- data/app/controllers/ish_manager/email_actions_controller.rb +1 -1
- data/app/controllers/ish_manager/email_campaigns_controller.rb +1 -12
- data/app/controllers/ish_manager/email_contexts_controller.rb +17 -0
- data/app/controllers/ish_manager/office_actions_controller.rb +85 -0
- data/app/views/ish_manager/application/_main_header_admin.haml +10 -6
- data/app/views/ish_manager/email_actions/_form.haml +3 -3
- data/app/views/ish_manager/email_actions/index.haml +9 -9
- data/app/views/ish_manager/email_campaigns/_form.haml +1 -1
- data/app/views/ish_manager/email_campaigns/index.haml +5 -2
- data/app/views/ish_manager/email_contexts/summary.csv.erb +4 -0
- data/app/views/ish_manager/email_contexts/summary.haml +0 -0
- data/app/views/ish_manager/office_actions/_form.haml +49 -0
- data/app/views/ish_manager/office_actions/edit.haml +7 -0
- data/app/views/ish_manager/office_actions/index.haml +38 -0
- data/app/views/ish_manager/office_actions/new.haml +9 -0
- data/app/views/ish_manager/office_actions/show.haml +11 -0
- data/app/views/ish_manager/scheduled_email_actions/index.haml +5 -6
- data/config/routes.rb +3 -0
- data/lib/tasks/office_tasks.rake +30 -1
- metadata +10 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ad6332705588cd6755bfb1bc2523291c5fa58240f548f7b7d0596123b280918
|
4
|
+
data.tar.gz: 4fdb537240ff5f95220dc2337f8e2dd49bf3d2cdc05b8ffee7eada2e660d53d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: feadba78e9e42914933a39332d4f8bdb377c1b75e1d5b61e72511c03f99617b4f8e9b0c396c0e181edf5e3ed4e4a8c72d95bb7034e206a3d8714cb8677ea5102
|
7
|
+
data.tar.gz: 2b6cbd12bfbdd15717f0400a4ed97e58960ae10668a376a95b95a598f39a64a532296e84a4ce44db4719f3627e2296e0771a9a55985de35165da12ecd0c9b33f
|
@@ -81,6 +81,7 @@ class IshManager::ApplicationController < ActionController::Base
|
|
81
81
|
@leadsets_list = Leadset.list
|
82
82
|
@locations_list = ::Gameui::Map.list
|
83
83
|
@maps_list = ::Gameui::Map.list # @TODO: missing nonpublic!
|
84
|
+
@office_actions_list = [[nil,nil]] + Office::Action.all.map { |a| [ a.slug, a.id ] }
|
84
85
|
@profiles_list = Ish::UserProfile.list
|
85
86
|
@reports_list = Report.all.list
|
86
87
|
@user_profiles_list = Ish::UserProfile.list
|
@@ -42,7 +42,7 @@ class ::IshManager::EmailActionsController < IshManager::ApplicationController
|
|
42
42
|
params[:email_action][:ties_attributes].delete( k )
|
43
43
|
end
|
44
44
|
if v[:to_delete] == "1"
|
45
|
-
|
45
|
+
EActie.find( v[:id] ).delete
|
46
46
|
params[:email_action][:ties_attributes].delete( k )
|
47
47
|
end
|
48
48
|
end
|
@@ -27,18 +27,7 @@ class ::IshManager::EmailCampaignsController < IshManager::ApplicationController
|
|
27
27
|
def do_send
|
28
28
|
@campaign = Ish::EmailCampaign.find params[:id]
|
29
29
|
authorize! :send, @campaign
|
30
|
-
@campaign.
|
31
|
-
tmpl = @campaign.email_template
|
32
|
-
|
33
|
-
ctx = Ctx.create!({
|
34
|
-
email_template: tmpl,
|
35
|
-
send_at: Time.now,
|
36
|
-
lead_id: lead.id,
|
37
|
-
from_email: tmpl.from_email,
|
38
|
-
subject: tmpl.subject,
|
39
|
-
})
|
40
|
-
end
|
41
|
-
|
30
|
+
@campaign.do_send
|
42
31
|
end
|
43
32
|
|
44
33
|
def show
|
@@ -1,3 +1,4 @@
|
|
1
|
+
require 'csv'
|
1
2
|
|
2
3
|
class ::IshManager::EmailContextsController < ::IshManager::ApplicationController
|
3
4
|
|
@@ -97,6 +98,22 @@ class ::IshManager::EmailContextsController < ::IshManager::ApplicationControlle
|
|
97
98
|
authorize! :show, @ctx
|
98
99
|
end
|
99
100
|
|
101
|
+
def summary
|
102
|
+
authorize! :summary, Ish::EmailContext
|
103
|
+
@results = Ish::EmailContext.summary
|
104
|
+
puts! @results, 'r'
|
105
|
+
|
106
|
+
# headers["Content-Type"] ||= 'text/csv'
|
107
|
+
|
108
|
+
respond_to do |format|
|
109
|
+
format.html # show.html.erb
|
110
|
+
format.csv do
|
111
|
+
render layout: false
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
116
|
+
|
100
117
|
def update
|
101
118
|
@ctx = ::Ish::EmailContext.find params[:id]
|
102
119
|
authorize! :update, @ctx
|
@@ -0,0 +1,85 @@
|
|
1
|
+
|
2
|
+
class ::IshManager::OfficeActionsController < IshManager::ApplicationController
|
3
|
+
|
4
|
+
before_action :set_lists
|
5
|
+
|
6
|
+
## Alphabetized : )
|
7
|
+
|
8
|
+
def create
|
9
|
+
@new_office_action = Office::Action.new params[:office_action].permit!
|
10
|
+
authorize! :create, @new_office_action
|
11
|
+
flag = @new_office_action.save
|
12
|
+
if flag
|
13
|
+
flash[:notice] = "Created OAction."
|
14
|
+
redirect_to action: 'index'
|
15
|
+
else
|
16
|
+
flash[:alert] = "Cannot create OAction: #{@new_office_action.errors.full_messages.join(', ')}."
|
17
|
+
render action: 'new'
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def edit
|
22
|
+
@act = @office_action = Office::Action.find( params[:id] )
|
23
|
+
@act.ties.push Office::ActionTie.new( next_office_action_id: nil )
|
24
|
+
authorize! :edit, @act
|
25
|
+
end
|
26
|
+
|
27
|
+
def index
|
28
|
+
@office_actions = Office::Action.all
|
29
|
+
|
30
|
+
authorize! :index, @new_office_action
|
31
|
+
end
|
32
|
+
|
33
|
+
def new
|
34
|
+
authorize! :new, @new_office_action
|
35
|
+
end
|
36
|
+
|
37
|
+
def show
|
38
|
+
@act = @office_action = Office::Action.find( params[:id] )
|
39
|
+
authorize! :show, @act
|
40
|
+
end
|
41
|
+
|
42
|
+
## def create; update; end
|
43
|
+
## def upsert; update; end
|
44
|
+
def update
|
45
|
+
if params[:id]
|
46
|
+
@act = @office_action = Office::Action.find( params[:id] )
|
47
|
+
else
|
48
|
+
@act = @office_action = Office::Action.new
|
49
|
+
end
|
50
|
+
authorize! :upsert, @act
|
51
|
+
|
52
|
+
if params[:office_action][:ties_attributes]
|
53
|
+
params[:office_action][:ties_attributes].each do |k, v|
|
54
|
+
if !v[:next_office_action_id].present?
|
55
|
+
params[:office_action][:ties_attributes].delete( k )
|
56
|
+
end
|
57
|
+
if v[:to_delete] == "1"
|
58
|
+
EActie.find( v[:id] ).delete
|
59
|
+
params[:office_action][:ties_attributes].delete( k )
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
flag = @act.update_attributes( params[:office_action].permit! )
|
65
|
+
if flag
|
66
|
+
flash[:notice] = 'Success'
|
67
|
+
redirect_to action: 'index'
|
68
|
+
else
|
69
|
+
flash[:alert] = "No luck: #{@act.errors.full_messages.join(', ')}. #{@act.ties.map { |t| t.errors.full_messages.join(', ') }.join(' | ') }"
|
70
|
+
render action: 'edit'
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
##
|
76
|
+
## private
|
77
|
+
##
|
78
|
+
private
|
79
|
+
|
80
|
+
def set_lists
|
81
|
+
@new_office_action = Office::Action.new
|
82
|
+
super
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
@@ -56,23 +56,24 @@
|
|
56
56
|
= link_to "#{WpTag::INBOX} (#{Office::EmailConversation.in_emailtag(WpTag::INBOX).length})", email_conversations_in_path(WpTag::INBOX)
|
57
57
|
= link_to '[+]', new_email_context_path
|
58
58
|
%li
|
59
|
-
= link_to "
|
59
|
+
= link_to "Tmpls (#{Ish::EmailTemplate.all.count})", email_templates_path
|
60
60
|
= link_to '[+]', new_email_template_path
|
61
61
|
%li
|
62
|
-
= link_to "
|
62
|
+
= link_to "Co's (#{Leadset.kept.length})", leadsets_path
|
63
63
|
= link_to '[+]', new_leadset_path
|
64
64
|
|
65
65
|
|
66
66
|
%li
|
67
|
-
= link_to "
|
67
|
+
= link_to "EActions (#{Office::EmailAction.count})", email_actions_path
|
68
68
|
= link_to '[+]', new_email_action_path
|
69
69
|
%ul
|
70
70
|
%li
|
71
71
|
= link_to "Filters (#{Office::EmailFilter.active.length})", email_filters_path
|
72
72
|
= link_to '[+]', new_email_filter_path
|
73
73
|
%li
|
74
|
-
= link_to "
|
74
|
+
= link_to "Ctxs (#{Ctx.notsent.length})", notsent_email_contexts_path
|
75
75
|
= link_to '[+]', new_email_context_path
|
76
|
+
= link_to '[csv]', email_contexts_summary_path( format: :csv )
|
76
77
|
|
77
78
|
%li
|
78
79
|
= link_to "Leads (#{Lead.kept.length})", leads_path
|
@@ -80,13 +81,16 @@
|
|
80
81
|
%li
|
81
82
|
= link_to "Schs (#{Sch.active.length})", scheduled_email_actions_path
|
82
83
|
= link_to '[+]', new_scheduled_email_action_path
|
84
|
+
|
83
85
|
%ul
|
84
86
|
%li
|
85
87
|
%li
|
86
88
|
%li
|
87
|
-
= link_to
|
89
|
+
= link_to "Campaigns (#{Ish::EmailCampaign.count})", email_campaigns_path
|
88
90
|
= link_to '[+]', new_email_campaign_path
|
89
|
-
%li
|
91
|
+
%li
|
92
|
+
= link_to "OActions (#{Office::Action.count})", office_actions_path
|
93
|
+
= link_to '[+]', new_office_action_path
|
90
94
|
|
91
95
|
.c
|
92
96
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
|
-
-
|
3
|
-
- url
|
2
|
+
- eact = email_action
|
3
|
+
- url = email_action.new_record? ? email_actions_path : email_action_path( email_action )
|
4
4
|
|
5
5
|
.email-actions--form
|
6
6
|
|
@@ -19,7 +19,7 @@
|
|
19
19
|
-# = f.text_area :descr
|
20
20
|
.field.flex-row
|
21
21
|
%label Template
|
22
|
-
= f.select :email_template_id, options_for_select( @email_templates_list, selected:
|
22
|
+
= f.select :email_template_id, options_for_select( @email_templates_list, selected: eact.email_template_id ), {}, class: 'select2'
|
23
23
|
|
24
24
|
.col-md-6
|
25
25
|
.field
|
@@ -11,22 +11,22 @@
|
|
11
11
|
%th= check_box_tag 'abba'
|
12
12
|
%th
|
13
13
|
%th slug
|
14
|
-
%th descr
|
15
14
|
%th next actions
|
16
|
-
- @email_actions.each do |
|
15
|
+
- @email_actions.each do |eact|
|
17
16
|
%tr
|
18
17
|
%td= check_box_tag 'abba'
|
19
|
-
%td= link_to '[~]', edit_email_action_path(
|
20
|
-
%td
|
21
|
-
|
22
|
-
|
18
|
+
%td= link_to '[~]', edit_email_action_path( eact )
|
19
|
+
%td
|
20
|
+
-# = link_to eact.slug, email_action_path( eact )
|
21
|
+
= eact.slug
|
22
|
+
.em.small= eact.descr
|
23
23
|
%td
|
24
24
|
%ul
|
25
|
-
-
|
25
|
+
- eact.ties.map do |next_a|
|
26
26
|
%li
|
27
27
|
.a= next_a.next_at_exe
|
28
28
|
.a
|
29
|
-
- if next_a.next_email_action.slug ==
|
29
|
+
- if next_a.next_email_action.slug == eact.slug
|
30
30
|
(same)
|
31
31
|
= next_a.next_email_action.slug
|
32
|
-
|
32
|
+
|
@@ -21,7 +21,7 @@
|
|
21
21
|
|
22
22
|
.field
|
23
23
|
= f.label "From"
|
24
|
-
= f.select :from_email, options_for_select(Ish::EmailContext.from_email_list, selected: campaign.from_email)
|
24
|
+
= f.select :from_email, options_for_select(Ish::EmailContext.from_email_list, selected: campaign.from_email), {}, class: 'select2'
|
25
25
|
|
26
26
|
.actions
|
27
27
|
= f.submit 'Submit'
|
@@ -5,6 +5,9 @@
|
|
5
5
|
Email Campaigns (#{@campaigns.length})
|
6
6
|
= link_to '[+]', new_email_campaign_path
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
%ul
|
9
|
+
- @campaigns.each do |c|
|
10
|
+
%li
|
11
|
+
= link_to c.slug, email_campaign_path(c)
|
12
|
+
= link_to '[~]', edit_email_campaign_path(c)
|
10
13
|
|
File without changes
|
@@ -0,0 +1,49 @@
|
|
1
|
+
|
2
|
+
- oact = office_action
|
3
|
+
- url = office_action.new_record? ? office_actions_path : office_action_path( office_action )
|
4
|
+
|
5
|
+
.office-actions--form
|
6
|
+
|
7
|
+
= form_for office_action, url: url, as: :office_action, :html => { :multipart => true } do |f|
|
8
|
+
.row
|
9
|
+
.col-sm-6
|
10
|
+
= f.submit :submit
|
11
|
+
|
12
|
+
.row
|
13
|
+
.col-md-6
|
14
|
+
.field
|
15
|
+
%label Slug
|
16
|
+
= f.text_field :slug
|
17
|
+
|
18
|
+
.flex-row
|
19
|
+
%label State
|
20
|
+
= f.select :state, options_for_select(::Office::Action::STATES, selected: oact.state )
|
21
|
+
.field
|
22
|
+
= f.label :perform_at
|
23
|
+
= f.text_field :perform_at
|
24
|
+
|
25
|
+
.field
|
26
|
+
%label Action Exe
|
27
|
+
= f.text_area :action_exe, class: 'large'
|
28
|
+
|
29
|
+
.col-md-6
|
30
|
+
.field
|
31
|
+
%label Next Office Actions
|
32
|
+
.eg rand(1..5).business_days.from_now.to_date + rand(8..16).hours + rand(1..59).minutes
|
33
|
+
%br
|
34
|
+
|
35
|
+
= f.fields_for :ties do |next_f|
|
36
|
+
.flex-row.field
|
37
|
+
= next_f.label :next_at_exe
|
38
|
+
= next_f.text_field :next_at_exe, class: 'flex-grow'
|
39
|
+
.flex-row.field
|
40
|
+
= next_f.label :to_delete
|
41
|
+
= next_f.check_box :to_delete
|
42
|
+
= next_f.select :next_office_action_id, options_for_select( @office_actions_list, selected: next_f.object.next_office_action_id ), { }, { class: 'select2' }
|
43
|
+
%br
|
44
|
+
|
45
|
+
.row
|
46
|
+
.col-sm-6
|
47
|
+
= f.submit :submit
|
48
|
+
|
49
|
+
|
@@ -0,0 +1,38 @@
|
|
1
|
+
|
2
|
+
.office-actions-index.padded
|
3
|
+
|
4
|
+
.header
|
5
|
+
%h2.title
|
6
|
+
Office Actions
|
7
|
+
= link_to '[+]', new_office_action_path
|
8
|
+
|
9
|
+
%table.bordered
|
10
|
+
%tr
|
11
|
+
%th= check_box_tag 'abba'
|
12
|
+
%th
|
13
|
+
%th state
|
14
|
+
%th slug
|
15
|
+
%th perform at
|
16
|
+
%th exe
|
17
|
+
%th next actions
|
18
|
+
- @office_actions.each do |oact|
|
19
|
+
%tr
|
20
|
+
%td= check_box_tag 'abba'
|
21
|
+
%td= link_to '[~]', edit_office_action_path( oact )
|
22
|
+
%td= oact.state
|
23
|
+
%td
|
24
|
+
-# = link_to oact.slug, office_action_path( oact )
|
25
|
+
= oact.slug
|
26
|
+
.em.small= oact.descr
|
27
|
+
%td= oact.perform_at
|
28
|
+
%td= oact.action_exe
|
29
|
+
%td
|
30
|
+
%ul
|
31
|
+
- oact.ties.map do |next_a|
|
32
|
+
%li
|
33
|
+
.a= next_a.next_at_exe
|
34
|
+
.a
|
35
|
+
- if next_a.next_office_action.slug == oact.slug
|
36
|
+
(same)
|
37
|
+
= next_a.next_office_action.slug
|
38
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
|
2
|
+
.office-actions-show.max-width
|
3
|
+
.header
|
4
|
+
.title Office Action #{@act.id}
|
5
|
+
|
6
|
+
%ul
|
7
|
+
- @act.ties.map do |next_a|
|
8
|
+
%li
|
9
|
+
.a <b>Next act:</b> #{"(same)" if next_a.next_office_action.slug == @act.slug} #{next_a.next_office_action.slug}
|
10
|
+
.a <b>Next at exe:</b> #{next_a.next_at_exe}
|
11
|
+
.a <b>Eval'ed:</b> #{eval( next_a.next_at_exe )}
|
@@ -1,24 +1,23 @@
|
|
1
1
|
|
2
|
-
.scheduled-emails-index.
|
2
|
+
.scheduled-emails-index.padded
|
3
3
|
.header
|
4
4
|
%h2
|
5
5
|
Scheduled Email Actions
|
6
6
|
-# (#{Sch.kept.count})
|
7
7
|
(#{Sch.all.count})
|
8
8
|
= link_to '[+]', new_scheduled_email_action_path
|
9
|
-
.header
|
10
|
-
Time now: #{Time.now.strftime('%Y-%m-%d %l:%M%P')}
|
11
9
|
|
12
10
|
.items
|
13
11
|
- @scheduled_email_actions.each do |sch|
|
14
|
-
.item
|
12
|
+
.item.Card
|
15
13
|
.flex-row
|
16
14
|
.gray= sch.id
|
17
15
|
= link_to '[~]', edit_scheduled_email_action_path(sch)
|
18
16
|
|
19
17
|
%ul
|
20
|
-
%li <b>
|
18
|
+
%li <b>EAct:</b> #{link_to sch.email_action.slug, edit_email_action_path(sch.email_action)}
|
21
19
|
%li <b>Tmpl:</b> #{sch.email_action.email_template.slug}
|
22
|
-
|
20
|
+
- if sch.lead_id
|
21
|
+
%li <b>Lead:</b> #{link_to sch.lead.email, lead_path(sch.lead) }
|
23
22
|
%li <b>State:</b> #{sch.state}
|
24
23
|
%li <b>Perform at:</b> #{sch.perform_at.in_time_zone}
|
data/config/routes.rb
CHANGED
@@ -74,6 +74,7 @@ IshManager::Engine.routes.draw do
|
|
74
74
|
get 'email_conversations/notin/:not_slug', to: 'email_conversations#index', as: :email_conversations_notin
|
75
75
|
get 'email_conversations/show/:id', to: 'email_conversations#show', as: :email_conversation
|
76
76
|
|
77
|
+
get 'email_contexts/summary', to: 'email_contexts#summary', as: :email_contexts_summary
|
77
78
|
get 'email_contexts/for_lead/:lead_id', to: 'email_contexts#index', as: :email_contexts_for_lead
|
78
79
|
get 'email_contexts/iframe_src/:id', to: 'email_contexts#iframe_src', as: :email_context_iframe
|
79
80
|
get 'email_contexts/new_with_template/:template_slug', to: 'email_contexts#new'
|
@@ -107,6 +108,8 @@ IshManager::Engine.routes.draw do
|
|
107
108
|
|
108
109
|
resources :newsitems
|
109
110
|
|
111
|
+
resources :office_actions
|
112
|
+
|
110
113
|
resources :photos
|
111
114
|
resources :payments
|
112
115
|
|
data/lib/tasks/office_tasks.rake
CHANGED
@@ -18,6 +18,34 @@ namespace :office do
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
+
desc 'office actions exe, rolling perform'
|
22
|
+
task oacts: :environment do
|
23
|
+
while true do
|
24
|
+
|
25
|
+
## send and roll
|
26
|
+
Office::Action.active.where({ :perform_at.lte => Time.now }).each do |oact|
|
27
|
+
|
28
|
+
oact.update({
|
29
|
+
perform_at: nil,
|
30
|
+
# state: OAct::STATE_INACTIVE, ## @TODO: remove, they remain active but non-perform.
|
31
|
+
})
|
32
|
+
eval( oact.action_exe )
|
33
|
+
oact.ties.each do |tie|
|
34
|
+
next_oact = tie.next_office_action
|
35
|
+
next_oact.perform_at = eval(tie.next_at_exe)
|
36
|
+
next_oact.state = OAct::STATE_ACTIVE
|
37
|
+
next_oact.save!
|
38
|
+
end
|
39
|
+
|
40
|
+
print '+'
|
41
|
+
end
|
42
|
+
|
43
|
+
duration = Rails.env.production? ? 360 : 15 # 6 minutes or 15 seconds
|
44
|
+
sleep duration
|
45
|
+
print '.'
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
21
49
|
## 2023-04-02 _vp_ Continue.
|
22
50
|
desc "send emails"
|
23
51
|
task ctxs: :environment do
|
@@ -30,7 +58,8 @@ namespace :office do
|
|
30
58
|
print '^'
|
31
59
|
end
|
32
60
|
|
33
|
-
|
61
|
+
duration = Rails.env.production? ? 120 : 15 # 2 minutes or 15 seconds
|
62
|
+
sleep duration
|
34
63
|
print '.'
|
35
64
|
end
|
36
65
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ish_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.8.
|
4
|
+
version: 0.1.8.414
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -307,6 +307,7 @@ files:
|
|
307
307
|
- app/controllers/ish_manager/markers_controller.rb
|
308
308
|
- app/controllers/ish_manager/meetings_controller.rb
|
309
309
|
- app/controllers/ish_manager/newsitems_controller.rb
|
310
|
+
- app/controllers/ish_manager/office_actions_controller.rb
|
310
311
|
- app/controllers/ish_manager/payments_controller.rb
|
311
312
|
- app/controllers/ish_manager/photos_controller.rb
|
312
313
|
- app/controllers/ish_manager/reports_controller.rb
|
@@ -395,6 +396,8 @@ files:
|
|
395
396
|
- app/views/ish_manager/email_contexts/index.haml
|
396
397
|
- app/views/ish_manager/email_contexts/new.haml
|
397
398
|
- app/views/ish_manager/email_contexts/show.haml
|
399
|
+
- app/views/ish_manager/email_contexts/summary.csv.erb
|
400
|
+
- app/views/ish_manager/email_contexts/summary.haml
|
398
401
|
- app/views/ish_manager/email_conversations/index.haml
|
399
402
|
- app/views/ish_manager/email_conversations/show.haml
|
400
403
|
- app/views/ish_manager/email_filters/_form.haml
|
@@ -518,6 +521,11 @@ files:
|
|
518
521
|
- app/views/ish_manager/newsitems/edit.haml
|
519
522
|
- app/views/ish_manager/newsitems/index.haml
|
520
523
|
- app/views/ish_manager/newsitems/new.haml
|
524
|
+
- app/views/ish_manager/office_actions/_form.haml
|
525
|
+
- app/views/ish_manager/office_actions/edit.haml
|
526
|
+
- app/views/ish_manager/office_actions/index.haml
|
527
|
+
- app/views/ish_manager/office_actions/new.haml
|
528
|
+
- app/views/ish_manager/office_actions/show.haml
|
521
529
|
- app/views/ish_manager/office_mailer/morning_reminder.haml
|
522
530
|
- app/views/ish_manager/office_mailer/render
|
523
531
|
- app/views/ish_manager/office_mailer/test_email.html.haml
|