Sha256: 7f56bf8b929287deb388d253228e88638de8b0541e498ffed4b6cb23c751abfe
Contents?: true
Size: 430 Bytes
Versions: 39
Compression:
Stored size: 430 Bytes
Contents
class ApplicationController < ActionController::Base before_action :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
39 entries across 39 versions & 1 rubygems