osem-fcy/app/controllers/api/base_controller.rb

8 lines
142 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2014-08-07 07:42:22 +03:00
module Api
class BaseController < ActionController::Base
2016-11-20 14:33:00 +05:30
protect_from_forgery with: :exception
2014-08-07 07:42:22 +03:00
end
end