Class: Distribuo::ApplicationPolicy::Scope
- Inherits:
-
Object
- Object
- Distribuo::ApplicationPolicy::Scope
- Defined in:
- app/policies/distribuo/application_policy.rb
Instance Attribute Summary collapse
-
#scope ⇒ Object
readonly
Returns the value of attribute scope.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
-
#initialize(user, scope) ⇒ Scope
constructor
A new instance of Scope.
- #resolve ⇒ Object
Constructor Details
#initialize(user, scope) ⇒ Scope
Returns a new instance of Scope.
47 48 49 50 |
# File 'app/policies/distribuo/application_policy.rb', line 47 def initialize(user, scope) @user = user @scope = scope end |
Instance Attribute Details
#scope ⇒ Object (readonly)
Returns the value of attribute scope.
45 46 47 |
# File 'app/policies/distribuo/application_policy.rb', line 45 def scope @scope end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
45 46 47 |
# File 'app/policies/distribuo/application_policy.rb', line 45 def user @user end |
Instance Method Details
#resolve ⇒ Object
52 53 54 |
# File 'app/policies/distribuo/application_policy.rb', line 52 def resolve scope.administrable end |