2023-08-08 19:29:01 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-08-08 16:48:09 +00:00
|
|
|
module ApplicationHelper
|
2023-08-08 19:29:01 +00:00
|
|
|
def logged_in?
|
|
|
|
session[:user_id].present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_user
|
|
|
|
@current_user ||= User.find(session[:user_id]) if logged_in?
|
|
|
|
end
|
2023-08-08 16:48:09 +00:00
|
|
|
end
|