Exception: Pundit::NotAuthorizedError
- Inherits:
-
Error
- Object
- StandardError
- Error
- Pundit::NotAuthorizedError
- Defined in:
- lib/pundit.rb
Overview
Error that will be raised when authorization has failed
Instance Attribute Summary collapse
- #policy ⇒ Object readonly
- #query ⇒ Object readonly
- #record ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ NotAuthorizedError
constructor
A new instance of NotAuthorizedError.
Constructor Details
#initialize(options = {}) ⇒ NotAuthorizedError
Returns a new instance of NotAuthorizedError.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/pundit.rb', line 31 def initialize( = {}) if .is_a? String = else @query = [:query] @record = [:record] @policy = [:policy] = .fetch(:message) do record_name = record.is_a?(Class) ? record.to_s : "this #{record.class}" "not allowed to #{policy.class}##{query} #{record_name}" end end super() end |
Instance Attribute Details
#policy ⇒ Object (readonly)
29 30 31 |
# File 'lib/pundit.rb', line 29 def policy @policy end |
#query ⇒ Object (readonly)
29 30 31 |
# File 'lib/pundit.rb', line 29 def query @query end |
#record ⇒ Object (readonly)
29 30 31 |
# File 'lib/pundit.rb', line 29 def record @record end |