effective_memberships 0.2.0 → 0.2.4

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 (37) 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/memberships_directory_controller.rb +14 -0
  5. data/app/datatables/admin/effective_applicant_references_datatable.rb +31 -0
  6. data/app/datatables/admin/effective_memberships_datatable.rb +2 -2
  7. data/app/datatables/effective_memberships_directory_datatable.rb +31 -0
  8. data/app/helpers/effective_memberships_helper.rb +0 -13
  9. data/app/models/concerns/effective_memberships_applicant.rb +0 -4
  10. data/app/models/concerns/effective_memberships_applicant_review.rb +0 -4
  11. data/app/models/concerns/effective_memberships_category.rb +2 -2
  12. data/app/models/concerns/effective_memberships_fee_payment.rb +0 -4
  13. data/app/models/concerns/effective_memberships_owner.rb +5 -3
  14. data/app/models/effective/membership.rb +1 -1
  15. data/app/views/admin/applicant_references/_applicant_reference.html.haml +1 -0
  16. data/app/views/admin/applicants/_form.html.haml +4 -0
  17. data/app/views/admin/applicants/_status.html.haml +2 -2
  18. data/app/views/effective/applicant_references/_applicant_reference.html.haml +1 -1
  19. data/app/views/effective/applicants/_applicant.html.haml +1 -4
  20. data/app/views/effective/applicants/_course_amounts.html.haml +1 -1
  21. data/app/views/effective/applicants/_declarations.html.haml +1 -1
  22. data/app/views/effective/applicants/_demographics.html.haml +1 -1
  23. data/app/views/effective/applicants/_education.html.haml +1 -1
  24. data/app/views/effective/applicants/_experience.html.haml +1 -1
  25. data/app/views/effective/applicants/_files.html.haml +1 -1
  26. data/app/views/effective/applicants/_references.html.haml +1 -1
  27. data/app/views/effective/applicants/_select.html.haml +1 -0
  28. data/app/views/effective/applicants/submitted.html.haml +3 -6
  29. data/app/views/effective/fee_payments/_declarations.html.haml +1 -1
  30. data/app/views/effective/fee_payments/_demographics.html.haml +1 -1
  31. data/app/views/effective/fee_payments/_fee_payment.html.haml +1 -4
  32. data/app/views/effective/fee_payments/_summary.html.haml +1 -0
  33. data/app/views/effective/fee_payments/submitted.html.haml +1 -0
  34. data/app/views/effective/memberships_directory/index.html.haml +1 -0
  35. data/config/routes.rb +7 -0
  36. data/lib/effective_memberships/version.rb +1 -1
  37. metadata +10 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f8c32ed9ffd17db6a7c0826bfb9eb72615ec3e7049adbb9f18b99cb8957c905
4
- data.tar.gz: 5685ca74db5bd94d757c6a209b135160a015fddd2900ba6d66b55976a495eaa9
3
+ metadata.gz: b0eef9b0e1ee657cc1d68ba1bdadde44e3f89b8002889512a62f99ba77fba756
4
+ data.tar.gz: 0a08d2d2352e7b6a1fa1bd67ae66b99706e278c85b08eee75ef3d2e4aae8eab6
5
5
  SHA512:
6
- metadata.gz: 9590986cb17a70c70183acfa7a4bf7dbc23959fd9482058737a916f767feedeb77a14444f2b6f1ed9631bb1c4d7d70affaf46e38f879a0af1a6acdc4ac480c94
7
- data.tar.gz: 4dc42f6e02b50adad0c8c714ee64e97ef398828a391736db51348fed377ced92784cf116f21f147edec98eea06c365925d4d0efce559001c839d2ad89826e7ca
6
+ metadata.gz: db209b01ffdbe5b9071e05b7df946c72454b8edfd19833e3cb393261beed6336c65345d7133e3da3406c190e16e87612f3064e412a7bc7023191be17cfbe2691
7
+ data.tar.gz: f3dcfabe8a98ccae4109166398356127fb6a860d3896966681604f119fdd4b830870ae9a2f808c8fdd6a4a3be7bbbb0ba442bc8a2acb5b0e692921164f6a47a2
@@ -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
@@ -0,0 +1,14 @@
1
+ module Effective
2
+ class MembershipsDirectoryController < ApplicationController
3
+ include Effective::CrudController
4
+
5
+ def index
6
+ @page_title = 'Directory'
7
+
8
+ EffectiveResources.authorize!(self, :index, Effective::Membership)
9
+
10
+ @datatable = EffectiveResources.best('EffectiveMembershipsDirectoryDatatable').new
11
+ end
12
+
13
+ end
14
+ 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
@@ -8,7 +8,7 @@ module Admin
8
8
  col :owner_id, visible: false
9
9
  col :owner_type, visible: false
10
10
 
11
- col :owner
11
+ val :owner
12
12
  col :categories
13
13
 
14
14
  col :number
@@ -28,7 +28,7 @@ module Admin
28
28
  end
29
29
 
30
30
  collection do
31
- memberships = Effective::Membership.deep.all
31
+ memberships = Effective::Membership.deep.all.includes(:owner)
32
32
 
33
33
  raise('expected an owner_id, not user_id') if attributes[:user_id].present?
34
34
 
@@ -0,0 +1,31 @@
1
+ # Member Directory Datatable
2
+ class EffectiveMembershipsDirectoryDatatable < Effective::Datatable
3
+ datatable do
4
+ length 100
5
+
6
+ col(:name) { |membership| membership.owner.to_s }
7
+
8
+ col :joined_on
9
+ col :number
10
+ col :categories, search: :string, label: 'Category'
11
+ end
12
+
13
+ collection do
14
+ scope = Effective::Membership.deep.includes(:owner)
15
+
16
+ archived_klasses.each do |klass|
17
+ scope = scope.where.not(owner_id: klass.archived.select('id'), owner_type: klass.name)
18
+ end
19
+
20
+ scope
21
+ end
22
+
23
+ def archived_klasses
24
+ @archived_klasses ||= begin
25
+ klasses = Effective::Membership.distinct(:owner_type).pluck(:owner_type)
26
+ klasses = klasses.select { |klass| klass.safe_constantize.try(:acts_as_archived?) }
27
+ klasses.map { |klass| klass.constantize }
28
+ end
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]
@@ -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]
@@ -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
@@ -53,10 +53,12 @@ module EffectiveMembershipsOwner
53
53
  end
54
54
 
55
55
  def effective_memberships_owners
56
- owners = users if respond_to?(:users) && users.any? { |user| user.class.respond_to?(:effective_memberships_owner?) }
57
- owners = organizations if respond_to?(:organizations) && organizations.any? { |organization| organization.class.respond_to?(:effective_memberships_owner?) }
56
+ owners = organizations if self.class.respond_to?(:effective_organizations_user?)
57
+ owners = users if self.class.respond_to?(:effective_organizations_organization?)
58
58
 
59
- owners || [self]
59
+ owners = Array(owners).reject { |owner| owner.try(:archived?) }
60
+
61
+ owners.presence || [self]
60
62
  end
61
63
 
62
64
  # This is the calculated way of determining if an owner is a member or not.
@@ -26,7 +26,7 @@ module Effective
26
26
  timestamps
27
27
  end
28
28
 
29
- scope :deep, -> { includes(:membership_categories) }
29
+ scope :deep, -> { includes(membership_categories: :category) }
30
30
  scope :sorted, -> { order(:id) }
31
31
 
32
32
  scope :with_paid_fees_through, -> (period = nil) {
@@ -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
 
@@ -0,0 +1 @@
1
+ = render_datatable(@datatable, buttons: false)
data/config/routes.rb CHANGED
@@ -16,10 +16,17 @@ EffectiveMemberships::Engine.routes.draw do
16
16
  resources :fee_payments, only: [:new, :show] do
17
17
  resources :build, controller: :fee_payments, only: [:show, :update]
18
18
  end
19
+
20
+ get '/directory', to: 'memberships_directory#index'
19
21
  end
20
22
 
21
23
  namespace :admin do
22
24
  resources :applicants, except: [:new, :create, :show]
25
+
26
+ resources :applicant_references, only: [:show] do
27
+ post :notify, on: :member
28
+ end
29
+
23
30
  resources :fees
24
31
  resources :categories, except: [:show]
25
32
 
@@ -1,3 +1,3 @@
1
1
  module EffectiveMemberships
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.4'
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.0
4
+ version: 0.2.4
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-20 00:00:00.000000000 Z
11
+ date: 2022-01-28 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
@@ -249,8 +250,10 @@ files:
249
250
  - app/controllers/effective/applicant_references_controller.rb
250
251
  - app/controllers/effective/applicants_controller.rb
251
252
  - app/controllers/effective/fee_payments_controller.rb
253
+ - app/controllers/effective/memberships_directory_controller.rb
252
254
  - app/datatables/admin/effective_applicant_course_areas_datatable.rb
253
255
  - app/datatables/admin/effective_applicant_course_names_datatable.rb
256
+ - app/datatables/admin/effective_applicant_references_datatable.rb
254
257
  - app/datatables/admin/effective_applicants_datatable.rb
255
258
  - app/datatables/admin/effective_categories_datatable.rb
256
259
  - app/datatables/admin/effective_fee_payments_datatable.rb
@@ -263,6 +266,7 @@ files:
263
266
  - app/datatables/effective_applicant_references_datatable.rb
264
267
  - app/datatables/effective_applicants_datatable.rb
265
268
  - app/datatables/effective_fee_payments_datatable.rb
269
+ - app/datatables/effective_memberships_directory_datatable.rb
266
270
  - app/helpers/effective_memberships_helper.rb
267
271
  - app/mailers/effective/memberships_mailer.rb
268
272
  - app/models/concerns/effective_memberships_applicant.rb
@@ -291,6 +295,7 @@ files:
291
295
  - app/views/admin/applicant_course_areas/_form_applicant_course_area.html.haml
292
296
  - app/views/admin/applicant_course_areas/index.html.haml
293
297
  - app/views/admin/applicant_course_name/_form.html.haml
298
+ - app/views/admin/applicant_references/_applicant_reference.html.haml
294
299
  - app/views/admin/applicants/_form.html.haml
295
300
  - app/views/admin/applicants/_form_approve.html.haml
296
301
  - app/views/admin/applicants/_form_decline.html.haml
@@ -338,6 +343,7 @@ files:
338
343
  - app/views/effective/applicants/_layout.html.haml
339
344
  - app/views/effective/applicants/_orders.html.haml
340
345
  - app/views/effective/applicants/_references.html.haml
346
+ - app/views/effective/applicants/_select.html.haml
341
347
  - app/views/effective/applicants/_summary.html.haml
342
348
  - app/views/effective/applicants/billing.html.haml
343
349
  - app/views/effective/applicants/checkout.html.haml
@@ -361,6 +367,7 @@ files:
361
367
  - app/views/effective/fee_payments/_fee_payment.html.haml
362
368
  - app/views/effective/fee_payments/_layout.html.haml
363
369
  - app/views/effective/fee_payments/_orders.html.haml
370
+ - app/views/effective/fee_payments/_summary.html.haml
364
371
  - app/views/effective/fee_payments/billing.html.haml
365
372
  - app/views/effective/fee_payments/checkout.html.haml
366
373
  - app/views/effective/fee_payments/declarations.html.haml
@@ -372,6 +379,7 @@ files:
372
379
  - app/views/effective/fees/_fee.html.haml
373
380
  - app/views/effective/memberships/_dashboard.html.haml
374
381
  - app/views/effective/memberships/_membership.html.haml
382
+ - app/views/effective/memberships_directory/index.html.haml
375
383
  - app/views/effective/memberships_mailer/applicant_approved.liquid
376
384
  - app/views/effective/memberships_mailer/applicant_declined.liquid
377
385
  - app/views/effective/memberships_mailer/applicant_reference_notification.liquid