nexus_cqrs 0.4.7 → 0.4.8

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: faac1f432d692edcc43068b97fbac0261b4f0b7ebd1ff1f74bef37cabf97b377
4
- data.tar.gz: 86e217db7e9db65b23e1eebb0af6649fb9248f4cf987b2f6924013cd86fb3c97
3
+ metadata.gz: 5eaaa5907400751d2a1e04da16226885b6945a6d04ec5c10b513cec92e10123a
4
+ data.tar.gz: aecdbe537dd07314b8e5d66d4c312a353b2d23fade004412a26998c041ea7af0
5
5
  SHA512:
6
- metadata.gz: cfda5b1fc3d64af583692cb85180c979fcef2a77e56f91937db14a8e53e28068638da45791011aeb154c5e1234550dc5fe4a795257d2e74099c0f6925019385c
7
- data.tar.gz: a777fe6969d4d93bc877e3420c0e62b6b29597c8a683fb9c538ed4bf4f1b3debf84a0a9820fea6374dcd28999302d037b2c155e83c8baf175e4e24b4d448f929
6
+ metadata.gz: cbc0b64117f244c62d96f9fb75c7c030e9d8ab62e4cf206396066dbf7eeb416fda0787c506d567eae31d56d06e135eee1922fbcbc48411b937505fe33d90186f
7
+ data.tar.gz: 2c103ccfa697dad306e40eebe48b856bfd7bc2e347ce728bce8c560adc68c2a2c31f007c0c556d637a78daaf967c9f1127c4e196d842ac5ffb3ea3cafd5aa4fb
@@ -71,7 +71,7 @@ module NexusCqrs
71
71
 
72
72
  # Retrieves a list of permissions assigned to a user for ANY entity ID
73
73
  #
74
- # @param [ApplicationRecord] permission_model Permission model
74
+ # @param [Class] permission_model Permission model class
75
75
  # @return [Hash] Returns a hash representing each entity and the user's permissions
76
76
  # @example Get a list of permissions
77
77
  # permissions.for_user(CollectionPermissions) #=>
@@ -117,10 +117,10 @@ module NexusCqrs
117
117
  # Retrieve all the permissions for this user for a specific model and cache it for this request (as all calls to
118
118
  # a PermissionProvider in the same request will all have the same permissions, this saves on many SQL calls)
119
119
  #
120
- # @param [ApplicationRecord] permission_model Permission model
120
+ # @param [Class] permission_model Class for the permission model being used.
121
121
  # @see PermissionProvider#for_user
122
122
  def cached_permissions(permission_model)
123
- ::RequestStore.store["permissions_#{permission_model.class.name}"] ||= for_user(permission_model)
123
+ ::RequestStore.store["permissions_#{permission_model.name}"] ||= for_user(permission_model)
124
124
  end
125
125
  end
126
126
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module NexusCqrs
3
- # Leave this as 0.4.7 in order for CI process to replace with the tagged version.
4
- VERSION = '0.4.7'
3
+ # Leave this as 0.4.8 in order for CI process to replace with the tagged version.
4
+ VERSION = '0.4.8'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nexus_cqrs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dean Lovett