aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_controller/metal/cookies.rb
blob: 6616d9665e75014e5e80675856d48da32e230229 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
                                
                

                                 
               
                                                       
       
 
           
                 
                          
         
     
   
# frozen_string_literal: true
module ActionController #:nodoc:
  module Cookies
    extend ActiveSupport::Concern

    included do
      helper_method :cookies if defined?(helper_method)
    end

    private
      def cookies
        request.cookie_jar
      end
  end
end