2018-05-07 16:47:29 -07:00
|
|
|
# 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
|
2013-07-04 14:02:50 +02:00
|
|
|
end
|