Class: PUNK::ClearSessionAction
Instance Attribute Summary
Attributes included from Validatable
Instance Method Summary collapse
Methods inherited from Action
Methods inherited from Service
Methods included from Loggable
#exception, #logger, #profile_debug, #profile_info, #profile_trace
Methods inherited from Runnable
args, #method_missing, #respond_to_missing?
Methods included from Validatable
#default_validation_helpers_options, #get_column_value, #valid?, #validates_not_empty
Methods included from Plugins::Validation::InstanceMethods
#validates_email, #validates_event, #validates_phone, #validates_state, #validates_url
Methods inherited from Settings
#method_missing, #respond_to_missing?
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class PUNK::Runnable
Instance Method Details
#process ⇒ Object
16 17 18 19 |
# File 'lib/punk/actions/sessions/clear.rb', line 16 def process session.clear! present Info, message: "You have been logged out." end |
#validate ⇒ Object
7 8 9 10 11 12 13 14 |
# File 'lib/punk/actions/sessions/clear.rb', line 7 def validate validates_not_null :session validates_not_empty :session return if session.blank? validates_type Session, :session validates_state :session, :active validates_event :session, :clear end |