effective_memberships 0.17.5 → 0.17.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d142c13f7d68942b383fff9bc314047b153de3be9cb0c04bb8af51eff8318d40
|
4
|
+
data.tar.gz: 51a2c27f121dce157be9c241a49f74c1b40956fd24e2b1b4dec63e640c31fd61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f024d0dd50619988dd4c01a118b99187b17472db7dc822b1e05ddb0967381824c0096be348ec2d50861e2ac7ef214f74f5c6c956148420ad29c56a819f3e9a3e
|
7
|
+
data.tar.gz: 27373898ff7749494413ac78ba8946870d4b5b428df8ca4f3699ead53c00f6678d8c1ff7551d7e26dc91d6c1f915e5254fff3c3932cabb29a5c5ff51c426b3b2
|
@@ -37,6 +37,7 @@ module EffectiveMembershipsApplicant
|
|
37
37
|
acts_as_email_form
|
38
38
|
acts_as_purchasable_parent
|
39
39
|
acts_as_tokened
|
40
|
+
acts_as_reportable if respond_to?(:acts_as_reportable)
|
40
41
|
|
41
42
|
acts_as_statused(
|
42
43
|
:draft, # Just Started
|
@@ -77,7 +78,6 @@ module EffectiveMembershipsApplicant
|
|
77
78
|
|
78
79
|
has_many_attached :applicant_files
|
79
80
|
has_many_attached :transcripts
|
80
|
-
|
81
81
|
has_many_purgable if respond_to?(:has_many_purgable)
|
82
82
|
|
83
83
|
# Transcripts Step
|
@@ -190,6 +190,11 @@ module EffectiveMembershipsApplicant
|
|
190
190
|
timestamps
|
191
191
|
end
|
192
192
|
|
193
|
+
# effective_reports
|
194
|
+
def reportable_scopes
|
195
|
+
{ draft: nil, submitted: nil, in_progress: nil, done: nil }
|
196
|
+
end
|
197
|
+
|
193
198
|
scope :deep, -> { includes(:user, :organization, :category, :from_category, :from_status, :orders) }
|
194
199
|
scope :sorted, -> { order(:id) }
|
195
200
|
|
data/app/models/effective/fee.rb
CHANGED
@@ -3,6 +3,7 @@ module Effective
|
|
3
3
|
acts_as_purchasable
|
4
4
|
|
5
5
|
log_changes(to: :owner) if respond_to?(:log_changes)
|
6
|
+
acts_as_reportable if respond_to?(:acts_as_reportable)
|
6
7
|
|
7
8
|
# Every fee is charged to a owner: a user or an organization
|
8
9
|
belongs_to :owner, polymorphic: true
|
@@ -39,6 +40,11 @@ module Effective
|
|
39
40
|
timestamps
|
40
41
|
end
|
41
42
|
|
43
|
+
# effective_reports
|
44
|
+
def reportable_scopes
|
45
|
+
{ purchased: nil, not_purchased: nil }
|
46
|
+
end
|
47
|
+
|
42
48
|
scope :sorted, -> { order(:id) }
|
43
49
|
scope :deep, -> { includes(:owner, :parent, :category) }
|
44
50
|
|