cancancan_nested_auth 0.0.0 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6ec611ac65c753256beb9533524d9706345eda4d9f8e2cb88a7e904d57bcdb0
4
- data.tar.gz: d91c1ecf3bdc31617a1cfbef45f4bb2d790da9cfa0346ddc45728a1fdbc9ebe6
3
+ metadata.gz: 3dc3968e597bcafec1512406e02e86a03bc3c76812c8680280cb2eda8b36e2a4
4
+ data.tar.gz: f07be991d4caedc6c7a9fd83de61d811810751a2019a468f01b9ed34b93cd831
5
5
  SHA512:
6
- metadata.gz: 95eae08b0d76102c889c23e413e6b5258ae9a867dd96c7f0e90741af287e0b29da4a6357e6256b969059b7be5b59dc09f1ffe377bc96ee2a4716dd606fa5e825
7
- data.tar.gz: baf460771849ca266b896b952cd1cc63313898abf3a3f031372438d7396d3c5f9393a2ca70f8fd98e8a8303f3e51e688f606c18f7f2054a04bc5566f5f15a902
6
+ metadata.gz: a19784886f5e180f91e4026ce959304e24179bc1fa05579ac1fb2e841e020c8bad770e11ba4982d29012795b19f5738fd5755910787f098d1d676deb224124a8
7
+ data.tar.gz: a2c74ae68e057949956af981bacf6296c23c3e2d69e07d08c21e0b394b325a9aa704a0ac045c2e0b5685abc06dc64430ed465fa61f3824309b540f3a37e18d7c
@@ -1,7 +1,7 @@
1
1
  module CanCanCan
2
2
  module NestedAssignmentAndAuthorization
3
3
  class Configuration
4
- attr_accessor :silence_raised_errors, :use_smart_nested_authorizations
4
+ attr_accessor :silence_raised_errors, :use_smart_nested_authorizations, :use_resource_key_in_params
5
5
 
6
6
  def initialize
7
7
  # Allows for stopping unauthorized actions without raising errors
@@ -9,6 +9,11 @@ module CanCanCan
9
9
  # Auto-determine what action to auth on nested associations (:create, :update, :destroy)
10
10
  # - will use the action of the root object otherwise.
11
11
  @use_smart_nested_authorizations = true
12
+ # Set to `true` if you're nesting parameter data under the resource_key
13
+ # - i.e. params => {user: {email: 'test', name: 'fun'}}
14
+ # Set to `false` if resource parameter data is direct in in params.
15
+ # - i.e. params => {email: 'test', name: 'fun'}
16
+ @use_resource_key_in_params = false
12
17
  end
13
18
  end
14
19
  end
@@ -1,5 +1,5 @@
1
1
  module CanCanCan
2
2
  module NestedAssignmentAndAuthorization
3
- VERSION = '1.0.0'
3
+ VERSION = '0.1.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cancancan_nested_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - benjamin.dana.software.dev@gmail.com