mirror of
https://github.com/openSUSE/osem.git
synced 2025-12-31 01:58:57 -05:00
8 lines
142 B
Ruby
8 lines
142 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
class BaseController < ActionController::Base
|
|
protect_from_forgery with: :exception
|
|
end
|
|
end
|