osem-fcy/app/controllers/api/base_controller.rb
2018-04-04 10:28:10 -07:00

7 lines
142 B
Ruby

# frozen_string_literal: true
module Api
class BaseController < ActionController::Base
protect_from_forgery with: :exception
end
end