mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:31:41 +00:00
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
|