openSUSE/osem

View on GitHub
app/controllers/api/base_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Api
  class BaseController < ActionController::Base
    protect_from_forgery with: :exception
  end
end