Sha256: 641ca1d7be3619297dea3e89c4a9cd713f47bbf5961e456e8221608d6ecd4f11
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module Hanami class Action # @since 2.0.0 class Error < ::StandardError end # Missing session error # # This error is raised when `session` or `flash` is accessed/set on request/response objects # in actions which do not include `Hanami::Action::Session`. # # @since 2.0.0 # # @see Hanami::Action::Session # @see Hanami::Action::Request#session # @see Hanami::Action::Response#session # @see Hanami::Action::Response#flash class MissingSessionError < Error def initialize(session_method) super(<<~TEXT) Sessions are not enabled. To use `#{session_method}`: Configure sessions in your Hanami app, e.g. module MyApp class App < Hanami::App # See Rack::Session::Cookie for options config.sessions = :cookie, {**cookie_session_options} end end Or include session support directly in your action class: include Hanami::Action::Session TEXT end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hanami-controller-2.0.0.beta4 | lib/hanami/action/error.rb |