Class: Glib::ApplicationPolicy
- Inherits:
-
Object
- Object
- Glib::ApplicationPolicy
- Defined in:
- app/policies/glib/application_policy.rb
Defined Under Namespace
Classes: Scope
Class Attribute Summary collapse
-
.catch_all ⇒ Object
readonly
Returns the value of attribute catch_all.
Instance Attribute Summary collapse
-
#context ⇒ Object
Returns the value of attribute context.
-
#controller ⇒ Object
readonly
Returns the value of attribute controller.
-
#params ⇒ Object
readonly
Returns the value of attribute params.
-
#policy_name ⇒ Object
readonly
Returns the value of attribute policy_name.
-
#record ⇒ Object
readonly
Returns the value of attribute record.
-
#request ⇒ Object
readonly
Returns the value of attribute request.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Class Method Summary collapse
Instance Method Summary collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
102 103 104 105 106 107 108 |
# File 'app/policies/glib/application_policy.rb', line 102 def method_missing(name, *args, &block) if name.to_s.end_with?('?') && catch_all call_catch_all else super end end |
Class Attribute Details
.catch_all ⇒ Object (readonly)
Returns the value of attribute catch_all.
21 22 23 |
# File 'app/policies/glib/application_policy.rb', line 21 def catch_all @catch_all end |
Instance Attribute Details
#context ⇒ Object
Returns the value of attribute context.
5 6 7 |
# File 'app/policies/glib/application_policy.rb', line 5 def context @context end |
#controller ⇒ Object (readonly)
Returns the value of attribute controller.
6 7 8 |
# File 'app/policies/glib/application_policy.rb', line 6 def controller @controller end |
#params ⇒ Object (readonly)
Returns the value of attribute params.
6 7 8 |
# File 'app/policies/glib/application_policy.rb', line 6 def params @params end |
#policy_name ⇒ Object (readonly)
Returns the value of attribute policy_name.
6 7 8 |
# File 'app/policies/glib/application_policy.rb', line 6 def policy_name @policy_name end |
#record ⇒ Object (readonly)
Returns the value of attribute record.
6 7 8 |
# File 'app/policies/glib/application_policy.rb', line 6 def record @record end |
#request ⇒ Object (readonly)
Returns the value of attribute request.
6 7 8 |
# File 'app/policies/glib/application_policy.rb', line 6 def request @request end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
6 7 8 |
# File 'app/policies/glib/application_policy.rb', line 6 def user @user end |
Class Method Details
.args_builder ⇒ Object
119 120 121 |
# File 'app/policies/glib/application_policy.rb', line 119 def self.args_builder Proc.new { |controller| [] } end |
Instance Method Details
#helpers ⇒ Object
124 125 126 |
# File 'app/policies/glib/application_policy.rb', line 124 def helpers controller.helpers end |
#scope ⇒ Object
111 112 113 114 115 116 |
# File 'app/policies/glib/application_policy.rb', line 111 def scope policy_scope_class = Pundit::PolicyFinder.new(@policy_name).scope return unless policy_scope_class controller.policy_scope(record.class, policy_scope_class: policy_scope_class) end |