You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/lib/user_configs.rb

14 lines
318 B

# frozen_string_literal: true
module UserConfigs
module_function
def load_signature(user)
return if user.blank?
uuid = user.user_configs.find_or_initialize_by(key: UserConfig::SIGNATURE_KEY).value
ActiveStorage::Attachment.find_by(uuid:, record: user, name: 'signature') if uuid.present?
end
end