class Bullet::Notification::Base

def whoami

def whoami
  @user ||=
    ENV['USER'].presence ||
    (
      begin
        `whoami`.chomp
      rescue StandardError
        ''
      end
    )
  @user.present? ? "user: #{@user}" : ''
end