effective_memberships 0.2.3 → 0.3.0

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 (30) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/effective/applicants_controller.rb +0 -24
  3. data/app/controllers/effective/fee_payments_controller.rb +0 -22
  4. data/app/helpers/effective_memberships_helper.rb +0 -13
  5. data/app/models/concerns/effective_memberships_applicant.rb +16 -16
  6. data/app/models/concerns/effective_memberships_applicant_review.rb +9 -10
  7. data/app/models/concerns/effective_memberships_category.rb +2 -2
  8. data/app/models/concerns/effective_memberships_fee_payment.rb +0 -4
  9. data/app/models/effective/applicant_course.rb +1 -1
  10. data/app/models/effective/applicant_education.rb +1 -1
  11. data/app/models/effective/applicant_experience.rb +1 -1
  12. data/app/models/effective/applicant_reference.rb +1 -1
  13. data/app/views/effective/applicants/_applicant.html.haml +1 -4
  14. data/app/views/effective/applicants/_course_amounts.html.haml +1 -1
  15. data/app/views/effective/applicants/_declarations.html.haml +1 -1
  16. data/app/views/effective/applicants/_demographics.html.haml +1 -1
  17. data/app/views/effective/applicants/_education.html.haml +1 -1
  18. data/app/views/effective/applicants/_experience.html.haml +1 -1
  19. data/app/views/effective/applicants/_files.html.haml +1 -1
  20. data/app/views/effective/applicants/_references.html.haml +1 -1
  21. data/app/views/effective/applicants/_select.html.haml +1 -0
  22. data/app/views/effective/applicants/submitted.html.haml +3 -6
  23. data/app/views/effective/fee_payments/_declarations.html.haml +1 -1
  24. data/app/views/effective/fee_payments/_demographics.html.haml +1 -1
  25. data/app/views/effective/fee_payments/_fee_payment.html.haml +1 -4
  26. data/app/views/effective/fee_payments/_summary.html.haml +1 -0
  27. data/app/views/effective/fee_payments/submitted.html.haml +1 -0
  28. data/db/migrate/01_create_effective_memberships.rb.erb +7 -0
  29. data/lib/effective_memberships/version.rb +1 -1
  30. metadata +4 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 981aea653a25a94a440ce8599ab99cab71f429ac409a839f5f061d9731239d2e
4
- data.tar.gz: b88503a72edd658d63e81b49d4b17c4402dde65d717692db4dff53f3b54c02fe
3
+ metadata.gz: 299989dcd361fdf24b0ba06461caaf5708934a416c356c9a24ab088bad96e4bb
4
+ data.tar.gz: b2ea47e531173ce84ca9732f75f1d9d4dd3f82f0f382fc6723d4efdc3124f455
5
5
  SHA512:
6
- metadata.gz: 67066fc2672c948a59c20cd1422e88d39a5b41be07aecf36ede4dcace2919e91c0d1058c165ebad70af7ed6dedcdc47015f447d89449c330d7cd1edf537a80cb
7
- data.tar.gz: 7f46ea79c2d79e431f1150224180520850dbc683b399b9758801818d9ab213de67e6e4902a1e3861a1b16a5f54843fe048f5e0c5222d89cda27351ae5f6e28a6
6
+ metadata.gz: 520f5f62ef9b6faa7d281a93055cf078fc3138ce29c0a176852c6ee3504ea3412936166463e3fd0603b19fe627e1ea5c1074457ecedf238b5d2f6b98e1983f53
7
+ data.tar.gz: 96ccdbb68a88d7faeb8c97addc37b4f85d7c96a2c36d9967309e4edb50e8c27a793387a96c29ea0a18a8999287338a65cdae6d76b9606f700eca2803f12edb28
@@ -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
@@ -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]
@@ -81,20 +77,20 @@ module EffectiveMembershipsApplicant
81
77
  belongs_to :category, polymorphic: true, optional: true
82
78
  belongs_to :from_category, polymorphic: true, optional: true
83
79
 
84
- has_many :applicant_reviews, -> { order(:id) }, inverse_of: :applicant, dependent: :destroy
80
+ has_many :applicant_reviews, -> { order(:id) }, as: :applicant, dependent: :destroy
85
81
  accepts_nested_attributes_for :applicant_reviews, reject_if: :all_blank, allow_destroy: true
86
82
 
87
83
  # Effective Namespace
88
- has_many :applicant_courses, -> { order(:id) }, class_name: 'Effective::ApplicantCourse', inverse_of: :applicant, dependent: :destroy
84
+ has_many :applicant_courses, -> { order(:id) }, class_name: 'Effective::ApplicantCourse', as: :applicant, dependent: :destroy
89
85
  accepts_nested_attributes_for :applicant_courses, reject_if: :all_blank, allow_destroy: true
90
86
 
91
- has_many :applicant_educations, -> { order(:id) }, class_name: 'Effective::ApplicantEducation', inverse_of: :applicant, dependent: :destroy
87
+ has_many :applicant_educations, -> { order(:id) }, class_name: 'Effective::ApplicantEducation', as: :applicant, dependent: :destroy
92
88
  accepts_nested_attributes_for :applicant_educations, reject_if: :all_blank, allow_destroy: true
93
89
 
94
- has_many :applicant_experiences, -> { order(:id) }, class_name: 'Effective::ApplicantExperience', inverse_of: :applicant, dependent: :destroy
90
+ has_many :applicant_experiences, -> { order(:id) }, class_name: 'Effective::ApplicantExperience', as: :applicant, dependent: :destroy
95
91
  accepts_nested_attributes_for :applicant_experiences, reject_if: :all_blank, allow_destroy: true
96
92
 
97
- has_many :applicant_references, -> { order(:id) }, class_name: 'Effective::ApplicantReference', inverse_of: :applicant, dependent: :destroy
93
+ has_many :applicant_references, -> { order(:id) }, class_name: 'Effective::ApplicantReference', as: :applicant, dependent: :destroy
98
94
  accepts_nested_attributes_for :applicant_references, reject_if: :all_blank, allow_destroy: true
99
95
 
100
96
  has_many :fees, -> { order(:id) }, as: :parent, class_name: 'Effective::Fee', dependent: :nullify
@@ -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
@@ -4,8 +4,8 @@ module Effective
4
4
 
5
5
  belongs_to :applicant_course_area
6
6
 
7
+ belongs_to :applicant, polymorphic: true, optional: true
7
8
  belongs_to :applicant_course_name, optional: true
8
- belongs_to :applicant, optional: true
9
9
 
10
10
  effective_resource do
11
11
  title :string
@@ -1,6 +1,6 @@
1
1
  module Effective
2
2
  class ApplicantEducation < ActiveRecord::Base
3
- belongs_to :applicant
3
+ belongs_to :applicant, polymorphic: true
4
4
 
5
5
  log_changes(to: :applicant) if respond_to?(:log_changes)
6
6
 
@@ -1,6 +1,6 @@
1
1
  module Effective
2
2
  class ApplicantExperience < ActiveRecord::Base
3
- belongs_to :applicant
3
+ belongs_to :applicant, polymorphic: true
4
4
 
5
5
  log_changes(to: :applicant) if respond_to?(:log_changes)
6
6
 
@@ -5,7 +5,7 @@ module Effective
5
5
  acts_as_statused :submitted, :completed
6
6
  log_changes(to: :applicant) if respond_to?(:log_changes)
7
7
 
8
- belongs_to :applicant
8
+ belongs_to :applicant, polymorphic: true
9
9
 
10
10
  KNOWNS = ['6 months - 1 year', '1 year - 2 years', '2 - 5 years', '5 - 10 years', 'More than 10 years']
11
11
  RELATIONSHIPS = ['Supervisor', 'Employer', 'Colleague', 'Other']
@@ -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
 
@@ -172,6 +172,7 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
172
172
  # Applicant Educations
173
173
  create_table :applicant_educations do |t|
174
174
  t.integer :applicant_id
175
+ t.string :applicant_type
175
176
 
176
177
  t.date :start_on
177
178
  t.date :end_on
@@ -191,6 +192,7 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
191
192
  # Applicant Experiences
192
193
  create_table :applicant_experiences do |t|
193
194
  t.integer :applicant_id
195
+ t.string :applicant_type
194
196
 
195
197
  t.string :level
196
198
  t.integer :months
@@ -216,6 +218,7 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
216
218
  # Applicant References
217
219
  create_table :applicant_references do |t|
218
220
  t.integer :applicant_id
221
+ t.string :applicant_type
219
222
 
220
223
  t.string :name
221
224
  t.string :email
@@ -264,7 +267,9 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
264
267
  create_table :applicant_courses do |t|
265
268
  t.integer :applicant_course_area_id
266
269
  t.integer :applicant_course_name_id
270
+
267
271
  t.integer :applicant_id
272
+ t.string :applicant_type
268
273
 
269
274
  t.string :title
270
275
  t.integer :amount
@@ -279,7 +284,9 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
279
284
  # Applicant Reviews
280
285
  create_table :applicant_reviews do |t|
281
286
  t.string :token
287
+
282
288
  t.integer :applicant_id
289
+ t.string :applicant_type
283
290
 
284
291
  t.integer :reviewer_id
285
292
  t.string :reviewer_type
@@ -1,3 +1,3 @@
1
1
  module EffectiveMemberships
2
- VERSION = '0.2.3'
2
+ VERSION = '0.3.0'
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.3
4
+ version: 0.3.0
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-28 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
@@ -343,6 +343,7 @@ files:
343
343
  - app/views/effective/applicants/_layout.html.haml
344
344
  - app/views/effective/applicants/_orders.html.haml
345
345
  - app/views/effective/applicants/_references.html.haml
346
+ - app/views/effective/applicants/_select.html.haml
346
347
  - app/views/effective/applicants/_summary.html.haml
347
348
  - app/views/effective/applicants/billing.html.haml
348
349
  - app/views/effective/applicants/checkout.html.haml
@@ -366,6 +367,7 @@ files:
366
367
  - app/views/effective/fee_payments/_fee_payment.html.haml
367
368
  - app/views/effective/fee_payments/_layout.html.haml
368
369
  - app/views/effective/fee_payments/_orders.html.haml
370
+ - app/views/effective/fee_payments/_summary.html.haml
369
371
  - app/views/effective/fee_payments/billing.html.haml
370
372
  - app/views/effective/fee_payments/checkout.html.haml
371
373
  - app/views/effective/fee_payments/declarations.html.haml