Files
osem/app/controllers/api/base_controller.rb

8 lines
142 B
Ruby

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