kissingcomputer/app/controllers/application_controller.rb
2026-01-10 16:17:07 +00:00

22 lines
628 B
Ruby

class ApplicationController < ActionController::Base
include Authentication
# Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has.
allow_browser versions: :modern
# Changes to the importmap will invalidate the etag for HTML responses
stale_when_importmap_changes
helper_method :current_user
private
def current_user
@current_user ||= User.find_by(id: session[:user_id]) if session[:user_id]
end
def authenticate_user!
unless current_user
redirect_to login_path, alert: "You must be logged in to access this page."
end
end
end