5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 21:56:21 +00:00
panel/app/controllers/api/v1/base_controller.rb
2020-02-06 13:17:04 -03:00

11 lines
202 B
Ruby

# frozen_string_literal: true
module Api
module V1
# API
class BaseController < ActionController::Base
protect_from_forgery with: :null_session
respond_to :json
end
end
end