aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/app/controllers/active_storage/base_controller.rb
blob: b27d2bd8aadbdbc47b684d9a92de9cb123c844bb (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

# The base class for all Active Storage controllers.
class ActiveStorage::BaseController < ActionController::Base
  include ActiveStorage::SetCurrent

  protect_from_forgery with: :exception
end