Sha256: 2bb1259e8a256248d5a5db930492d8d4f0133ff9a3251e5f14906470a2c94bdf
Contents?: true
Size: 507 Bytes
Versions: 142
Compression:
Stored size: 507 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware" module Renalware # Note that we inherit from ::ApplicationController which is defined in the host application. # This allows application to # - define the default layout # - intercept requests with before_action etc. class ApplicationController < ::ApplicationController # Prevent CSRF attacks by raising an exception. # For APIs, you may want to use :null_session instead. protect_from_forgery with: :exception end end
Version data entries
142 entries across 142 versions & 1 rubygems