about summary refs log tree commit diff
path: root/app/helpers/admin
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-03-08 16:00:24 +0100
committerGitHub <noreply@github.com>2020-03-08 16:00:24 +0100
commit2423d2f6772da39c0a76612dd2be299c445eb9f8 (patch)
treee9d0aa81170f7d780bf6ed56a0008b2c0ba1444c /app/helpers/admin
parent4063f9f27805de0a12904071e521094122b9f725 (diff)
Add ability to delete files uploaded for settings in admin UI (#13192)
* Allow deleting site uploads

* Refactor and move links into hints

* Fix i18n tests

* Fix HTML output of site_upload_delete_hint
Diffstat (limited to 'app/helpers/admin')
-rw-r--r--app/helpers/admin/settings_helper.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/helpers/admin/settings_helper.rb b/app/helpers/admin/settings_helper.rb
new file mode 100644
index 000000000..baf14ab25
--- /dev/null
+++ b/app/helpers/admin/settings_helper.rb
@@ -0,0 +1,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