11 lines
179 B
Ruby
11 lines
179 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
module Api
|
||
|
module V1
|
||
|
# API
|
||
|
class BaseController < ActionController::Base
|
||
|
protect_from_forgery with: :null_session
|
||
|
end
|
||
|
end
|
||
|
end
|