blob: 59312ac8df65d6c6f7d38dbde8bb884e6020080e (
plain) (
tree)
|
|
# 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
|