effective_polls 0.5.2 → 0.5.3

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: '0866cfca4a02dfa03072115499d8170354a405a59dc5b3f7c41fa0cd47572488'
4
- data.tar.gz: 1c281a7ef70e127dfa155011d1be9d5976bde1750b09ef7d30ae3ae72d549fbc
3
+ metadata.gz: aeea63d1d031f9751443c64f3113cf04f92cb564df3b5e2a96d67f28fbc921b6
4
+ data.tar.gz: f86d75f535b04ccbe7aba717a28a30f6f2e2c984b12217d17d5835a51f74c55c
5
5
  SHA512:
6
- metadata.gz: 7d754ccfdbd61b07fbd358b2e32b71ba3d04eab8baffc35d7c8d95267f08cbbbc469812bda3661ddab70173fbe08825472185fe5ddbeeb4f88c300835ebc0839
7
- data.tar.gz: c66bb05e2cc63164b889591e5239b58a094e803b64c406ceef6d10ff575d1a218d10751b66d20ff639891e8c242d5e1cb0ac3e457ae513b3d4172c27bd17b630
6
+ metadata.gz: ac6766f7c1c99724ab5b531e6fc114eac48f5489d8e2864e59b96c3e36b8950cc9c47d8fd3b661490a790b8183c36bacee6a8ea7890128c8de7586917f165e3d
7
+ data.tar.gz: 917faf44d9918eb10b2dacff690d3fb624c2e150aead4a32d20dfc4a3c677c092277d34a7635da2c1df952f2344af7148c4e2e179a0bbf5fe58e17358f617802
@@ -42,6 +42,12 @@ module EffectivePollsUser
42
42
  end
43
43
  end
44
44
 
45
+ if self.class.try(:effective_committees_user?)
46
+ scopes += Effective::Committee.sorted.map do |committee|
47
+ ["All #{committee} committee members", "with_committee_id_#{committee.id}"]
48
+ end
49
+ end
50
+
45
51
  if self.class.try(:acts_as_role_restricted?)
46
52
  scopes += EffectiveRoles.roles.map do |role|
47
53
  ["All #{role} role users", "with_role_id_#{role}"]
@@ -60,7 +66,9 @@ module EffectivePollsUser
60
66
 
61
67
  case name.try(:to_sym)
62
68
  when :members_with_category
63
- return collection.members_with_category(EffectiveMemberships.Category.find(id))
69
+ return collection.members_with_category(EffectiveMemberships.Category.find_by_id(id))
70
+ when :with_committee
71
+ return collection.with_committee(Effective::Committee.find_by_id(id))
64
72
  when :with_role
65
73
  return collection.with_role(id)
66
74
  end
@@ -1,3 +1,3 @@
1
1
  module EffectivePolls
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_polls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
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-11-06 00:00:00.000000000 Z
11
+ date: 2023-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails