From e355d6b7ea1a38267af135ac84e9248321cef7c2 Mon Sep 17 00:00:00 2001 From: Jeff Ohrstrom Date: Tue, 19 Nov 2024 10:33:44 -0500 Subject: [PATCH] require the appropriate libraries --- apps/dashboard/lib/current_user.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/dashboard/lib/current_user.rb b/apps/dashboard/lib/current_user.rb index dad37db86..47e16a4b8 100644 --- a/apps/dashboard/lib/current_user.rb +++ b/apps/dashboard/lib/current_user.rb @@ -1,6 +1,8 @@ # frozen_string_literal: true require 'etc' +require 'singleton' +require 'active_support/core_ext/module/delegation' # The CurrentUser class represents the current user on the system from Etc. # It has a name, a home directory, gid, uid and so on.