effective_memberships 0.2.2 → 0.2.6

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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/admin/applicant_references_controller.rb +9 -0
  3. data/app/controllers/effective/applicant_references_controller.rb +3 -4
  4. data/app/controllers/effective/applicants_controller.rb +0 -24
  5. data/app/controllers/effective/fee_payments_controller.rb +0 -22
  6. data/app/datatables/admin/effective_applicant_references_datatable.rb +31 -0
  7. data/app/helpers/effective_memberships_helper.rb +0 -13
  8. data/app/models/concerns/effective_memberships_applicant.rb +11 -11
  9. data/app/models/concerns/effective_memberships_applicant_review.rb +9 -10
  10. data/app/models/concerns/effective_memberships_category.rb +2 -2
  11. data/app/models/concerns/effective_memberships_fee_payment.rb +0 -4
  12. data/app/views/admin/applicant_references/_applicant_reference.html.haml +1 -0
  13. data/app/views/admin/applicants/_form.html.haml +4 -0
  14. data/app/views/admin/applicants/_status.html.haml +2 -2
  15. data/app/views/effective/applicant_references/_applicant_reference.html.haml +1 -1
  16. data/app/views/effective/applicants/_applicant.html.haml +1 -4
  17. data/app/views/effective/applicants/_course_amounts.html.haml +1 -1
  18. data/app/views/effective/applicants/_declarations.html.haml +1 -1
  19. data/app/views/effective/applicants/_demographics.html.haml +1 -1
  20. data/app/views/effective/applicants/_education.html.haml +1 -1
  21. data/app/views/effective/applicants/_experience.html.haml +1 -1
  22. data/app/views/effective/applicants/_files.html.haml +1 -1
  23. data/app/views/effective/applicants/_references.html.haml +1 -1
  24. data/app/views/effective/applicants/_select.html.haml +1 -0
  25. data/app/views/effective/applicants/submitted.html.haml +3 -6
  26. data/app/views/effective/fee_payments/_declarations.html.haml +1 -1
  27. data/app/views/effective/fee_payments/_demographics.html.haml +1 -1
  28. data/app/views/effective/fee_payments/_fee_payment.html.haml +1 -4
  29. data/app/views/effective/fee_payments/_summary.html.haml +1 -0
  30. data/app/views/effective/fee_payments/submitted.html.haml +1 -0
  31. data/config/routes.rb +5 -0
  32. data/lib/effective_memberships/version.rb +1 -1
  33. metadata +7 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 240ed521dcef407cae7be663d49f877b373012b2fbd8877b787a4fa315539a2b
4
- data.tar.gz: 394ebf710135b07e984df6277e80ca2340f8f4e4e61980e127dd0113ea6e2dca
3
+ metadata.gz: 6edc66bd8a9a8c6b9d38fb90cb42c8041efde67d7e2d5b80b14169678e70e9ff
4
+ data.tar.gz: 928861f7ee7ee4a2e2f1f77f3e8209909948ba7470ad2894267cbe29084e1290
5
5
  SHA512:
6
- metadata.gz: 7602bafa9bd4d86c4d01db0acadf432da1b9af29c7eeee171d3e560baa74037318802e7604282986bbe09230fbee3ae8005ee1f3148ff477422d0ef5ed83d138
7
- data.tar.gz: a3d51cf1a5d0941b48d1a3c400115973478acf21c501daf8e79aa61b83bb2109c314c6091d8a8742d1637b21895cd214819c94b53aef5e0743db3371f384bef8
6
+ metadata.gz: 9a928f4b12eead76fc74ebd7fe39838829484796b4dd017dbbc35236f9bdd16d0bdcf7cc74526fbb95dee1711c82157c817f084352aa6bcde3ce35c2306e5a59
7
+ data.tar.gz: b2dca432e504b87d57b88c2e36624cf857f3364c346828d355b58e28188b01a4ff38bdaece31b60cadc976075d9e62f4d7bf0530d260d63ecdd31b051702f014
@@ -0,0 +1,9 @@
1
+ module Admin
2
+ class ApplicantReferencesController < ApplicationController
3
+ before_action(:authenticate_user!) if defined?(Devise)
4
+ before_action { EffectiveResources.authorize!(self, :admin, :effective_memberships) }
5
+
6
+ include Effective::CrudController
7
+
8
+ end
9
+ end
@@ -24,12 +24,11 @@ module Effective
24
24
 
25
25
  def permitted_params
26
26
  permitted = params.require(:effective_applicant_reference).permit!.except(:token, :last_notified_at, :status, :status_steps)
27
- authorized = current_user.effective_memberships_owners.include?(resource.applicant.owner) == false
28
27
 
29
- if resource.submitted? && resource.applicant.was_submitted? && authorized
30
- permitted
31
- else
28
+ if current_user && current_user.effective_memberships_owners.include?(resource.applicant&.owner)
32
29
  permitted.except(:reservations, :reservations_reason, :work_history, :accept_declaration)
30
+ else
31
+ permitted
33
32
  end
34
33
 
35
34
  end
@@ -6,29 +6,5 @@ module Effective
6
6
 
7
7
  resource_scope -> { EffectiveMemberships.Applicant.deep.where(owner: current_user.effective_memberships_owners) }
8
8
 
9
- # Allow only 1 in-progress application at a time
10
- before_action(only: [:new, :show], unless: -> { resource&.done? }) do
11
- existing = resource_scope.in_progress.where.not(id: resource).first
12
-
13
- if existing.present?
14
- flash[:success] = "You have been redirected to your existing in progress application"
15
- redirect_to effective_memberships.applicant_build_path(existing, existing.next_step)
16
- end
17
- end
18
-
19
- after_save do
20
- flash.now[:success] = ''
21
- end
22
-
23
- private
24
-
25
- def permitted_params
26
- params.require(:applicant).permit!.except(
27
- :owner_id, :owner_type, :status, :status_steps, :wizard_steps,
28
- :submitted_at, :completed_at, :reviewed_at, :approved_at,
29
- :declined_at, :declined_reason, :created_at, :updated_at
30
- )
31
- end
32
-
33
9
  end
34
10
  end
@@ -6,27 +6,5 @@ module Effective
6
6
 
7
7
  resource_scope -> { EffectiveMemberships.FeePayment.deep.where(owner: current_user.effective_memberships_owners) }
8
8
 
9
- # Allow only 1 in-progress fee payment at a time
10
- before_action(only: [:new, :show], unless: -> { resource&.done? }) do
11
- existing = resource_scope.in_progress.where.not(id: resource).first
12
-
13
- if existing.present?
14
- flash[:success] = "You have been redirected to your existing in progress fee payment"
15
- redirect_to effective_memberships.fee_payment_build_path(existing, existing.next_step)
16
- end
17
- end
18
-
19
- after_save do
20
- flash.now[:success] = ''
21
- end
22
-
23
- private
24
-
25
- def permitted_params
26
- params.require(:fee_payment).permit!.except(
27
- :status, :status_steps, :wizard_steps, :submitted_at
28
- )
29
- end
30
-
31
9
  end
32
10
  end
@@ -0,0 +1,31 @@
1
+ class Admin::EffectiveApplicantReferencesDatatable < Effective::Datatable
2
+
3
+ datatable do
4
+ order :name
5
+
6
+ col :applicant
7
+
8
+ col :name
9
+ col :email
10
+ col :phone
11
+
12
+ col :status do |reference|
13
+ if reference.submitted?
14
+ 'Waiting on response'
15
+ elsif reference.completed?
16
+ 'Completed'
17
+ end
18
+ end
19
+
20
+ col :last_notified_at do |reference|
21
+ reference.last_notified_at&.strftime('%F') unless reference.completed?
22
+ end
23
+
24
+ actions_col
25
+ end
26
+
27
+ collection do
28
+ Effective::ApplicantReference.deep.all
29
+ end
30
+
31
+ end
@@ -1,15 +1,2 @@
1
1
  module EffectiveMembershipsHelper
2
-
3
- def edit_effective_applicants_wizard?
4
- params[:controller] == 'effective/applicants' && defined?(resource) && resource.draft?
5
- end
6
-
7
- def edit_effective_applicant_reviews_wizard?
8
- params[:controller] == 'effective/applicant_reviews' && defined?(resource) && resource.draft?
9
- end
10
-
11
- def edit_effective_fee_payments_wizard?
12
- params[:controller] == 'effective/fee_payments' && defined?(resource) && resource.draft?
13
- end
14
-
15
2
  end
@@ -16,10 +16,6 @@ module EffectiveMembershipsApplicant
16
16
  module ClassMethods
17
17
  def effective_memberships_applicant?; true; end
18
18
 
19
- def all_wizard_steps
20
- const_get(:WIZARD_STEPS).keys
21
- end
22
-
23
19
  # For effective_category_applicant_wizard_steps_collection
24
20
  def required_wizard_steps
25
21
  [:start, :select, :summary, :billing, :checkout, :submitted]
@@ -316,13 +312,15 @@ module EffectiveMembershipsApplicant
316
312
  raise('already submitted') if was_submitted?
317
313
  raise('expected a purchased order') unless submit_order&.purchased?
318
314
 
315
+ wizard_steps[:checkout] ||= Time.zone.now
316
+ wizard_steps[:submitted] = Time.zone.now
317
+ submitted!
318
+
319
319
  after_commit do
320
320
  applicant_references.each { |reference| reference.notify! if reference.submitted? }
321
321
  end
322
322
 
323
- wizard_steps[:checkout] ||= Time.zone.now
324
- wizard_steps[:submitted] = Time.zone.now
325
- submitted!
323
+ true
326
324
  end
327
325
 
328
326
  end
@@ -530,9 +528,10 @@ module EffectiveMembershipsApplicant
530
528
  raise('unsupported approval applicant_type')
531
529
  end
532
530
 
533
- after_commit { send_email(:applicant_approved) }
534
-
535
531
  save!
532
+
533
+ after_commit { send_email(:applicant_approved) }
534
+ true
536
535
  end
537
536
 
538
537
  # Admin approves an applicant. Registers the owner. Sends an email.
@@ -546,9 +545,10 @@ module EffectiveMembershipsApplicant
546
545
  wizard_steps[:submitted] ||= Time.zone.now
547
546
  declined!
548
547
 
549
- after_commit { send_email(:applicant_declined) }
550
-
551
548
  save!
549
+
550
+ after_commit { send_email(:applicant_declined) }
551
+ true
552
552
  end
553
553
 
554
554
  private
@@ -16,10 +16,6 @@ module EffectiveMembershipsApplicantReview
16
16
  module ClassMethods
17
17
  def effective_memberships_applicant_review?; true; end
18
18
 
19
- def all_wizard_steps
20
- const_get(:WIZARD_STEPS).keys
21
- end
22
-
23
19
  # For effective_category_applicant_wizard_steps_collection
24
20
  def required_wizard_steps
25
21
  [:start, :recommendation, :submitted]
@@ -113,30 +109,33 @@ module EffectiveMembershipsApplicantReview
113
109
  end
114
110
 
115
111
  def conflict_of_interest!
116
- after_commit { send_email(:applicant_review_conflict_of_interest) }
117
-
118
112
  update!(conflict_of_interest: true, recommendation: nil)
119
113
  conflicted!
120
114
 
121
115
  applicant.save!
116
+
117
+ after_commit { send_email(:applicant_review_conflict_of_interest) }
118
+ true
122
119
  end
123
120
 
124
121
  def accept!
125
- after_commit { send_email(:applicant_review_completed) }
126
-
127
122
  assign_attributes(recommendation: 'Accept')
128
123
  accepted!
129
124
 
130
125
  applicant.save!
131
- end
132
126
 
133
- def reject!
134
127
  after_commit { send_email(:applicant_review_completed) }
128
+ true
129
+ end
135
130
 
131
+ def reject!
136
132
  assign_attributes(recommendation: 'Reject')
137
133
  rejected!
138
134
 
139
135
  applicant.save!
136
+
137
+ after_commit { send_email(:applicant_review_completed) }
138
+ true
140
139
  end
141
140
 
142
141
  private
@@ -176,7 +176,7 @@ module EffectiveMembershipsCategory
176
176
  end
177
177
 
178
178
  def applicant_wizard_steps_collection
179
- wizard_steps = EffectiveMemberships.Applicant.const_get(:WIZARD_STEPS)
179
+ wizard_steps = EffectiveMemberships.Applicant.all_wizard_steps
180
180
  required_steps = EffectiveMemberships.Applicant.required_wizard_steps
181
181
 
182
182
  wizard_steps.map do |step, title|
@@ -185,7 +185,7 @@ module EffectiveMembershipsCategory
185
185
  end
186
186
 
187
187
  def fee_payment_wizard_steps_collection
188
- wizard_steps = EffectiveMemberships.FeePayment.const_get(:WIZARD_STEPS)
188
+ wizard_steps = EffectiveMemberships.FeePayment.all_wizard_steps
189
189
  required_steps = EffectiveMemberships.FeePayment.required_wizard_steps
190
190
 
191
191
  wizard_steps.map do |step, title|
@@ -16,10 +16,6 @@ module EffectiveMembershipsFeePayment
16
16
  module ClassMethods
17
17
  def effective_memberships_fee_payment?; true; end
18
18
 
19
- def all_wizard_steps
20
- const_get(:WIZARD_STEPS).keys
21
- end
22
-
23
19
  def required_wizard_steps
24
20
  [:start, :summary, :billing, :checkout, :submitted]
25
21
  end
@@ -0,0 +1 @@
1
+ = render '/effective/applicant_references/applicant_reference', applicant_reference: applicant_reference, skip_actions: true
@@ -21,6 +21,10 @@
21
21
  = tab 'Process' do
22
22
  = render 'admin/applicants/form_process', applicant: applicant
23
23
 
24
+ - if applicant.applicant_references.present?
25
+ = tab 'References' do
26
+ .mb-4= render_inline_datatable(Admin::EffectiveApplicantReferencesDatatable.new(applicant: applicant))
27
+
24
28
  - if applicant.fees.present?
25
29
  = tab 'Fees' do
26
30
  .mb-4= render_inline_datatable(Admin::EffectiveFeesDatatable.new(applicant_id: applicant.to_param))
@@ -51,9 +51,9 @@
51
51
  = applicant.min_applicant_references
52
52
  Required References Responded
53
53
  - else
54
- - if applicant.applicant_references.count(&:submitted?) > 0
54
+ - if applicant.applicant_references.present?
55
55
  %p
56
- = applicant.applicant_references.count(&:submitted?)
56
+ = applicant.applicant_references.count(&:completed?)
57
57
  = '/'
58
58
  = applicant.applicant_references.count
59
59
  References Responded
@@ -23,7 +23,7 @@
23
23
  - elsif reference.completed?
24
24
  Response completed
25
25
 
26
- - if reference.applicant.was_submitted? && !reference.completed?
26
+ - unless reference.applicant.was_approved?
27
27
  %tr
28
28
  %th Last Notified at
29
29
  %td= reference.last_notified_at&.strftime('%F') || 'Never'
@@ -1,6 +1,3 @@
1
1
  .effective-applicant
2
- - blacklist = EffectiveMemberships.Applicant.required_wizard_steps
3
- - steps = applicant.required_steps - blacklist
4
-
5
- - steps.select { |step| applicant.has_completed_step?(step) }.each do |partial|
2
+ - applicant.render_steps.each do |partial|
6
3
  = render "effective/applicants/#{partial}", applicant: applicant, step: partial
@@ -4,7 +4,7 @@
4
4
  .col-sm
5
5
  %h5.card-title= applicant.wizard_step_title(:course_amounts)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:course_amounts)) if edit_effective_applicants_wizard?
7
+ = link_to('Edit', wizard_path(:course_amounts)) if edit_effective_wizard?
8
8
 
9
9
 
10
10
  - applicant.applicant_course_areas_collection.each do |area|
@@ -4,7 +4,7 @@
4
4
  .col-sm
5
5
  %h5.card-title= applicant.wizard_step_title(:declarations)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:declarations)) if edit_effective_applicants_wizard?
7
+ = link_to('Edit', wizard_path(:declarations)) if edit_effective_wizard?
8
8
 
9
9
  %table.table
10
10
  %tbody
@@ -4,6 +4,6 @@
4
4
  .col-sm
5
5
  %h5.card-title= applicant.wizard_step_title(:demographics)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:demographics)) if edit_effective_applicants_wizard?
7
+ = link_to('Edit', wizard_path(:demographics)) if edit_effective_wizard?
8
8
 
9
9
  = render 'effective/applicants/demographics_owner', applicant: applicant, owner: applicant.owner
@@ -4,7 +4,7 @@
4
4
  .col-sm
5
5
  %h5.card-title= applicant.wizard_step_title(:education)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:education)) if edit_effective_applicants_wizard?
7
+ = link_to('Edit', wizard_path(:education)) if edit_effective_wizard?
8
8
 
9
9
  - datatable = EffectiveApplicantEducationsDatatable.new(applicant_id: applicant.id)
10
10
  .mb-4= render_simple_datatable(datatable)
@@ -4,7 +4,7 @@
4
4
  .col-sm
5
5
  %h5.card-title= applicant.wizard_step_title(:experience)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:experience)) if edit_effective_applicants_wizard?
7
+ = link_to('Edit', wizard_path(:experience)) if edit_effective_wizard?
8
8
 
9
9
  %table.table
10
10
  %tbody
@@ -4,7 +4,7 @@
4
4
  .col-sm
5
5
  %h5.card-title= applicant.wizard_step_title(:files)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:files)) if edit_effective_applicants_wizard?
7
+ = link_to('Edit', wizard_path(:files)) if edit_effective_wizard?
8
8
 
9
9
  %table.table
10
10
  %tbody
@@ -4,7 +4,7 @@
4
4
  .col-sm
5
5
  %h5.card-title= applicant.wizard_step_title(:references)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:references)) if edit_effective_applicants_wizard?
7
+ = link_to('Edit', wizard_path(:references)) if edit_effective_wizard?
8
8
 
9
9
  - applicant.applicant_references.each_with_index do |applicant_reference, index|
10
10
  - if index > 0
@@ -0,0 +1 @@
1
+ -# Intentionally blank
@@ -34,11 +34,8 @@
34
34
  = collapse('Show application...', card_class: 'my-2') do
35
35
  = render 'effective/applicants/applicant', applicant: resource
36
36
 
37
- = render 'effective/applicants/orders', applicant: resource
38
-
39
- -# - if resource.can_visit_step?(next_step)
40
- -# = effective_form_with(model: resource, url: wizard_path(step)) do |f|
41
- -# = f.hidden_field :current_step
42
- -# = f.submit 'Save and Continue', class: 'btn btn-primary'
37
+ .mb-4
38
+ = collapse('Show orders...', card_class: 'my-2') do
39
+ = render 'effective/applicants/orders', applicant: resource
43
40
 
44
41
  = link_to "Return to Dashboard", root_path, class: 'btn btn-lg btn-primary btn-block'
@@ -4,7 +4,7 @@
4
4
  .col-sm
5
5
  %h5.card-title= fee_payment.wizard_step_title(:declarations)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:declarations)) if edit_effective_fee_payments_wizard?
7
+ = link_to('Edit', wizard_path(:declarations)) if edit_effective_wizard?
8
8
 
9
9
  %table.table
10
10
  %tbody
@@ -4,6 +4,6 @@
4
4
  .col-sm
5
5
  %h5.card-title= fee_payment.wizard_step_title(:demographics)
6
6
  .col-sm-auto.text-right
7
- = link_to('Edit', wizard_path(:demographics)) if edit_effective_fee_payments_wizard?
7
+ = link_to('Edit', wizard_path(:demographics)) if edit_effective_wizard?
8
8
 
9
9
  = render 'effective/fee_payments/demographics_owner', fee_payment: fee_payment, owner: fee_payment.owner
@@ -1,6 +1,3 @@
1
1
  .effective-fee-payment
2
- - blacklist = EffectiveMemberships.FeePayment.required_wizard_steps
3
- - steps = fee_payment.required_steps - blacklist
4
-
5
- - steps.select { |step| fee_payment.has_completed_step?(step) }.each do |partial|
2
+ - fee_payment.render_steps.each do |partial|
6
3
  = render "effective/fee_payments/#{partial}", fee_payment: fee_payment, resource: fee_payment, step: partial
@@ -0,0 +1 @@
1
+ -# Intentionally blank
@@ -9,6 +9,7 @@
9
9
 
10
10
  = link_to "Return to Dashboard", root_path, class: 'btn btn-lg btn-primary mb-4'
11
11
 
12
+ = render 'effective/fee_payments/summary', fee_payment: resource
12
13
  = render 'effective/fee_payments/fee_payment', fee_payment: resource
13
14
  = render 'effective/fee_payments/orders', fee_payment: resource
14
15
 
data/config/routes.rb CHANGED
@@ -22,6 +22,11 @@ EffectiveMemberships::Engine.routes.draw do
22
22
 
23
23
  namespace :admin do
24
24
  resources :applicants, except: [:new, :create, :show]
25
+
26
+ resources :applicant_references, only: [:show] do
27
+ post :notify, on: :member
28
+ end
29
+
25
30
  resources :fees
26
31
  resources :categories, except: [:show]
27
32
 
@@ -1,3 +1,3 @@
1
1
  module EffectiveMemberships
2
- VERSION = '0.2.2'
2
+ VERSION = '0.2.6'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_memberships
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-21 00:00:00.000000000 Z
11
+ date: 2022-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -240,6 +240,7 @@ files:
240
240
  - app/assets/stylesheets/effective_memberships/base.scss
241
241
  - app/controllers/admin/applicant_course_areas_controller.rb
242
242
  - app/controllers/admin/applicant_course_names_controller.rb
243
+ - app/controllers/admin/applicant_references_controller.rb
243
244
  - app/controllers/admin/applicants_controller.rb
244
245
  - app/controllers/admin/categories_controller.rb
245
246
  - app/controllers/admin/fee_payments_controller.rb
@@ -252,6 +253,7 @@ files:
252
253
  - app/controllers/effective/memberships_directory_controller.rb
253
254
  - app/datatables/admin/effective_applicant_course_areas_datatable.rb
254
255
  - app/datatables/admin/effective_applicant_course_names_datatable.rb
256
+ - app/datatables/admin/effective_applicant_references_datatable.rb
255
257
  - app/datatables/admin/effective_applicants_datatable.rb
256
258
  - app/datatables/admin/effective_categories_datatable.rb
257
259
  - app/datatables/admin/effective_fee_payments_datatable.rb
@@ -293,6 +295,7 @@ files:
293
295
  - app/views/admin/applicant_course_areas/_form_applicant_course_area.html.haml
294
296
  - app/views/admin/applicant_course_areas/index.html.haml
295
297
  - app/views/admin/applicant_course_name/_form.html.haml
298
+ - app/views/admin/applicant_references/_applicant_reference.html.haml
296
299
  - app/views/admin/applicants/_form.html.haml
297
300
  - app/views/admin/applicants/_form_approve.html.haml
298
301
  - app/views/admin/applicants/_form_decline.html.haml
@@ -340,6 +343,7 @@ files:
340
343
  - app/views/effective/applicants/_layout.html.haml
341
344
  - app/views/effective/applicants/_orders.html.haml
342
345
  - app/views/effective/applicants/_references.html.haml
346
+ - app/views/effective/applicants/_select.html.haml
343
347
  - app/views/effective/applicants/_summary.html.haml
344
348
  - app/views/effective/applicants/billing.html.haml
345
349
  - app/views/effective/applicants/checkout.html.haml
@@ -363,6 +367,7 @@ files:
363
367
  - app/views/effective/fee_payments/_fee_payment.html.haml
364
368
  - app/views/effective/fee_payments/_layout.html.haml
365
369
  - app/views/effective/fee_payments/_orders.html.haml
370
+ - app/views/effective/fee_payments/_summary.html.haml
366
371
  - app/views/effective/fee_payments/billing.html.haml
367
372
  - app/views/effective/fee_payments/checkout.html.haml
368
373
  - app/views/effective/fee_payments/declarations.html.haml