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

                                 
               
                                                       
       
 
           
                 
                          
         
     
   
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