Sha256: 3e7a1631c9f91d736f43bc4d9ae64a42a5d794e60186e5e762f754ea8e87815d
Contents?: true
Size: 254 Bytes
Versions: 9
Compression:
Stored size: 254 Bytes
Contents
class ApplicationController < ActionController::Base protect_from_forgery with: :exception before_action :development_authenticate_user! def development_authenticate_user! if Rails.env.development? authenticate_user! end end end
Version data entries
9 entries across 9 versions & 1 rubygems