2019-09-05 18:56:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
# API
|
|
|
|
class BaseController < ActionController::Base
|
|
|
|
protect_from_forgery with: :null_session
|
2019-09-06 23:40:33 +00:00
|
|
|
respond_to :json
|
2019-09-05 18:56:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|