class ActiveScaffold::Config::Base::UserSettings

Public Class Methods

new(conf, storage, params) click to toggle source
# File lib/active_scaffold/config/base.rb, line 44
def initialize(conf, storage, params)
  # the session hash relevant to this action
  @session = storage
  # all the request params
  @params = params
  # the configuration object for this action
  @conf = conf
end