Slide 73
Slide 73 text
class ApplicationController < ActionController::B
helper_method :check_frozen_status
protect_from_forgery with: :exception
before_filter :check_frozen_status
before_filter :notify_new_message
def not_authenticated
flash[:warning] = 'You must be signed in to acce
redirect_to sign_in_path
end