Sha256: 5a0028c44dba2f57f53be0006545bb0e0bc3bfd97f90b78fc5ce64c87f83d247
Contents?: true
Size: 430 Bytes
Versions: 73
Compression:
Stored size: 430 Bytes
Contents
class ApplicationController < ActionController::Base before_filter :setup_user # Prevent CSRF attacks by raising an exception. # For APIs, you may want to use :null_session instead. protect_from_forgery with: :exception def setup_user @current_user = User.new @current_user.admin = true # if params[:admin] # @current_user.admin = true # end end def current_user @current_user end end
Version data entries
73 entries across 73 versions & 1 rubygems