clarion/app/controllers/concerns/public_api_exposing.rb

10 lines
162 B
Ruby
Raw Normal View History

require 'active_support/concern'
module PublicApiExposing
extend ActiveSupport::Concern
included do
before_action :set_access_control_headers
end
end