app/controllers/phcpress/application_controller.rb in phcpress-3.8.1 vs app/controllers/phcpress/application_controller.rb in phcpress-3.8.5
- old
+ new
@@ -1,11 +1,11 @@
module Phcpress
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
+ before_action :authenticate_user!, if: -> { defined?(Devise) }
protect_from_forgery with: :exception
- before_action :current_user
# Make Current User Sitewide
def current_user
return unless session[:user_id]
@current_user ||= User.find(session[:user_id])