effective_cpd 1.6.3 → 1.6.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 922313bd91077ecfcc7021a812ef4b90bc3872b79827b4347a2d6e75a0edf483
4
- data.tar.gz: 309a23f429945e56441cbe20f60f279c31bd62326aabe0d2fa4bf8762c1dd26e
3
+ metadata.gz: 1be69d17b3b7602f4ecd79e04ba02da88c72d9cffe84b2a62a89bfb86d9e83ad
4
+ data.tar.gz: 1e681360aeb11babccd620a4b50517ee76e14c8193256944e0b312da01f4d7c9
5
5
  SHA512:
6
- metadata.gz: fe546f711f3899bd5bfd5354d248fcfa5e1a8e82fcf5271c365b24d99902c9bf2c5618032d781d12852263c231d615ecfefb468128f829bc2b991181a0ee93c0
7
- data.tar.gz: 3bf62bf5078dfb8a6eb6bc448f44f2542af644eb9ddc145b2a35a612047ce9631d2a8442df40606ebd26c1d9b7cf8cf197ad8668f03cc536ebe74a323a9d3a13
6
+ metadata.gz: 818a42d3b8ae3d1b50b4504668a9a981456ac82a7283aa8b41de048c500e584515785fe2f823dad1767ac88ef4f95f85a195d8281618cc6bfbecd267c20a3f87
7
+ data.tar.gz: 3556315481e1cba1e8510cfb324f5d9f0c53ed62d656991ad9593c07e715eac16e6d19b8bb5bd95e4483ab85e60b257b38fc9cc3c0b7e813cecb11cae979a65d
@@ -25,9 +25,8 @@ class EffectiveCpdAvailableCyclesDatatable < Effective::Datatable
25
25
  end
26
26
 
27
27
  collection do
28
- raise('expected a current_user') unless current_user.present?
29
-
30
- completed = EffectiveCpd.CpdStatement.completed.where(user: current_user)
31
- Effective::CpdCycle.available.where.not(id: completed.select('cpd_cycle_id as id'))
28
+ completed = EffectiveCpd.CpdStatement.completed.where(user: attributes[:user] || current_user)
29
+ Effective::CpdCycle.available.where.not(id: completed.select(:cpd_cycle_id))
32
30
  end
31
+
33
32
  end
@@ -26,10 +26,7 @@ class EffectiveCpdCompletedStatementsDatatable < Effective::Datatable
26
26
  end
27
27
 
28
28
  collection do
29
- raise('expected a current_user') unless current_user.present?
30
- user = (current_user.class.find(attributes[:user_id]) if attributes[:user_id])
31
-
32
- EffectiveCpd.CpdStatement.completed.where(user: user || current_user).includes(:cpd_cycle)
29
+ EffectiveCpd.CpdStatement.completed.where(user: attributes[:user] || current_user).includes(:cpd_cycle)
33
30
  end
34
31
 
35
32
  end
@@ -1,3 +1,3 @@
1
1
  module EffectiveCpd
2
- VERSION = '1.6.3'
2
+ VERSION = '1.6.4'
3
3
  end
data/lib/effective_cpd.rb CHANGED
@@ -33,6 +33,10 @@ module EffectiveCpd
33
33
  cpd_statement_class_name&.constantize || Effective::CpdStatement
34
34
  end
35
35
 
36
+ def self.CpdCycle
37
+ Effective::CpdCycle
38
+ end
39
+
36
40
  def self.CpdAudit
37
41
  cpd_audit_class_name&.constantize || Effective::CpdAudit
38
42
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_cpd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.3
4
+ version: 1.6.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: 2023-04-12 00:00:00.000000000 Z
11
+ date: 2023-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails