app/controllers/application_controller.rb (11 lines of code) (raw):

class ApplicationController < ActionController::Base include SessionsHelper private # Confirms a logged-in user. def logged_in_user unless logged_in? store_location flash[:danger] = "Please log in." redirect_to login_url end end end