volmer/bootsy

View on GitHub
app/controllers/bootsy/application_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Bootsy
  class ApplicationController < Bootsy.base_controller
    # Prevent CSRF attacks by raising an exception.
    # For APIs, you may want to use :null_session instead.
    protect_from_forgery with: :exception
  end
end