logged_in_user

in app/controllers/application_controller.rb [6:13]


    def logged_in_user
      unless logged_in?
        store_location
        flash[:danger] = "Please log in."
        redirect_to login_url, status: :see_other
      end
    end