method

expiry_options

expiry_options(options)
private

No documentation available.

# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 523
        def expiry_options(options)
          if options[:expires].respond_to?(:from_now)
            { expires_in: options[:expires] }
          else
            { expires_at: options[:expires] }
          end
        end