about summary refs log tree commit diff
path: root/app/helpers/admin/settings_helper.rb
blob: baf14ab2574e3fd8bf0733df92bd5597ce2d6398 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Admin::SettingsHelper
  def site_upload_delete_hint(hint, var)
    upload = SiteUpload.find_by(var: var.to_s)
    return hint unless upload

    link = link_to t('admin.site_uploads.delete'), admin_site_upload_path(upload), data: { method: :delete }
    safe_join([hint, link], '<br/>'.html_safe)
  end
end