mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
# frozen_string_literal: true
|
|
|
|
require "action_controller"
|
|
require "rails/railtie"
|
|
|
|
module ActionController
|
|
autoload :Responder, "action_controller/responder"
|
|
autoload :RespondWith, "action_controller/respond_with"
|
|
end
|
|
|
|
module Responders
|
|
autoload :FlashResponder, "responders/flash_responder"
|
|
autoload :HttpCacheResponder, "responders/http_cache_responder"
|
|
autoload :CollectionResponder, "responders/collection_responder"
|
|
|
|
require "responders/controller_method"
|
|
|
|
class Railtie < ::Rails::Railtie
|
|
config.responders = ActiveSupport::OrderedOptions.new
|
|
config.responders.flash_keys = [:notice, :alert]
|
|
config.responders.namespace_lookup = false
|
|
config.responders.error_status = :ok
|
|
config.responders.redirect_status = :found
|
|
|
|
# Add load paths straight to I18n, so engines and application can overwrite it.
|
|
require "active_support/i18n"
|
|
I18n.load_path << File.expand_path("../responders/locales/en.yml", __FILE__)
|
|
|
|
initializer "responders.flash_responder" do |app|
|
|
Responders::FlashResponder.flash_keys = app.config.responders.flash_keys
|
|
Responders::FlashResponder.namespace_lookup = app.config.responders.namespace_lookup
|
|
ActionController::Responder.error_status = app.config.responders.error_status
|
|
ActionController::Responder.redirect_status = app.config.responders.redirect_status
|
|
end
|
|
end
|
|
end
|
|
|
|
ActiveSupport.on_load(:action_controller) do
|
|
include ActionController::RespondWith
|
|
end
|