mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
6bad959565
I'm working on a standardized error reporting interface (https://github.com/rails/rails/issues/43472) and it has the same need for a `context` than Active Record's query logs. Just like query logs, when reporting an error you want to know what the current controller or job is, etc. So by extracting it we can allow both API to use the same store.
65 lines
1.6 KiB
Ruby
65 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "abstract_controller"
|
|
require "action_dispatch"
|
|
require "action_controller/metal/strong_parameters"
|
|
|
|
module ActionController
|
|
extend ActiveSupport::Autoload
|
|
|
|
autoload :API
|
|
autoload :Base
|
|
autoload :Metal
|
|
autoload :Renderer
|
|
autoload :FormBuilder
|
|
|
|
eager_autoload do
|
|
autoload :Caching
|
|
end
|
|
|
|
autoload_under "metal" do
|
|
autoload :ConditionalGet
|
|
autoload :ContentSecurityPolicy
|
|
autoload :Cookies
|
|
autoload :DataStreaming
|
|
autoload :DefaultHeaders
|
|
autoload :EtagWithTemplateDigest
|
|
autoload :EtagWithFlash
|
|
autoload :PermissionsPolicy
|
|
autoload :Flash
|
|
autoload :Head
|
|
autoload :Helpers
|
|
autoload :HttpAuthentication
|
|
autoload :BasicImplicitRender
|
|
autoload :ImplicitRender
|
|
autoload :Instrumentation
|
|
autoload :Live
|
|
autoload :Logging
|
|
autoload :MimeResponds
|
|
autoload :ParamsWrapper
|
|
autoload :Redirecting
|
|
autoload :Renderers
|
|
autoload :Rendering
|
|
autoload :RequestForgeryProtection
|
|
autoload :Rescue
|
|
autoload :Streaming
|
|
autoload :StrongParameters
|
|
autoload :ParameterEncoding
|
|
autoload :Testing
|
|
autoload :UrlFor
|
|
end
|
|
|
|
autoload_under "api" do
|
|
autoload :ApiRendering
|
|
end
|
|
|
|
autoload :TestCase, "action_controller/test_case"
|
|
autoload :TemplateAssertions, "action_controller/test_case"
|
|
end
|
|
|
|
# Common Active Support usage in Action Controller
|
|
require "active_support/core_ext/module/attribute_accessors"
|
|
require "active_support/core_ext/load_error"
|
|
require "active_support/core_ext/module/attr_internal"
|
|
require "active_support/core_ext/name_error"
|
|
require "active_support/inflector"
|