1 2 3 4 5 6 7 8 9 10
# frozen_string_literal: true # The base controller for all ActiveStorage controllers. class ActiveStorage::BaseController < ActionController::Base protect_from_forgery with: :exception before_action do ActiveStorage::Current.host = request.base_url end end