effective_memberships 0.2.1 → 0.2.5
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/controllers/admin/applicant_references_controller.rb +9 -0
- data/app/controllers/effective/applicant_references_controller.rb +3 -4
- data/app/controllers/effective/applicants_controller.rb +0 -24
- data/app/controllers/effective/fee_payments_controller.rb +0 -22
- data/app/controllers/effective/memberships_directory_controller.rb +14 -0
- data/app/datatables/admin/effective_applicant_references_datatable.rb +31 -0
- data/app/datatables/admin/effective_memberships_datatable.rb +2 -2
- data/app/datatables/effective_memberships_directory_datatable.rb +31 -0
- data/app/helpers/effective_memberships_helper.rb +0 -13
- data/app/models/concerns/effective_memberships_applicant.rb +0 -4
- data/app/models/concerns/effective_memberships_applicant_review.rb +0 -4
- data/app/models/concerns/effective_memberships_category.rb +2 -2
- data/app/models/concerns/effective_memberships_fee_payment.rb +0 -4
- data/app/views/admin/applicant_references/_applicant_reference.html.haml +1 -0
- data/app/views/admin/applicants/_form.html.haml +4 -0
- data/app/views/admin/applicants/_status.html.haml +2 -2
- data/app/views/effective/applicant_references/_applicant_reference.html.haml +1 -1
- data/app/views/effective/applicants/_applicant.html.haml +1 -4
- data/app/views/effective/applicants/_course_amounts.html.haml +1 -1
- data/app/views/effective/applicants/_declarations.html.haml +1 -1
- data/app/views/effective/applicants/_demographics.html.haml +1 -1
- data/app/views/effective/applicants/_education.html.haml +1 -1
- data/app/views/effective/applicants/_experience.html.haml +1 -1
- data/app/views/effective/applicants/_files.html.haml +1 -1
- data/app/views/effective/applicants/_references.html.haml +1 -1
- data/app/views/effective/applicants/_select.html.haml +1 -0
- data/app/views/effective/applicants/submitted.html.haml +3 -6
- data/app/views/effective/fee_payments/_declarations.html.haml +1 -1
- data/app/views/effective/fee_payments/_demographics.html.haml +1 -1
- data/app/views/effective/fee_payments/_fee_payment.html.haml +1 -4
- data/app/views/effective/fee_payments/_summary.html.haml +1 -0
- data/app/views/effective/fee_payments/submitted.html.haml +1 -0
- data/app/views/effective/memberships_directory/index.html.haml +1 -0
- data/config/routes.rb +7 -0
- data/lib/effective_memberships/version.rb +1 -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: 5349de013b96f392cd5d9965a55fc8348656aed3a20b9c2798538454286368cd
|
4
|
+
data.tar.gz: 1f04f3dfd643b060a48919a00705255590439632fa4afd03925c0b1abe6ab324
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a9056129fa56370cf1dd1b9324b1f2581f81b3952f801f3509e60d68de68da6c65c7cf3a898bfd525d9e4a5ad3b648088e2e5218ead9448288bd67a9daf783e
|
7
|
+
data.tar.gz: 0f75e5e23b53188eb83524190ad4fc7292bddb7af3faf349207074a3bc0b4da660ea41415392933c851843d1c57b1eafa43127fd3c6f9ac2dfeca5f43fe5f303
|
@@ -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
|
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,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
|
-
|
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.
|
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.
|
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.
|
54
|
+
- if applicant.applicant_references.present?
|
55
55
|
%p
|
56
|
-
= applicant.applicant_references.count(&:
|
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
|
-
-
|
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
|
-
-
|
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
|
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
|
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
|
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
|
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
|
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(:references)
|
6
6
|
.col-sm-auto.text-right
|
7
|
-
= link_to('Edit', wizard_path(:references)) if
|
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
|
-
|
38
|
-
|
39
|
-
|
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
|
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
|
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
|
-
-
|
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
|
|
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.
|
4
|
+
version: 0.2.5
|
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-
|
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
|
@@ -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
|