--- /dev/null
+# frozen_string_literal: true
+
+module Admin
+ class SiteUploadsController < BaseController
+ before_action :set_site_upload
+
+ def destroy
+ authorize :settings, :destroy?
+
+ @site_upload.destroy!
+
+ redirect_to edit_admin_settings_path, notice: I18n.t('admin.site_uploads.destroyed_msg')
+ end
+
+ private
+
+ def set_site_upload
+ @site_upload = SiteUpload.find(params[:id])
+ end
+ end
+end
--- /dev/null
+# 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
.fields-row
.fields-row__column.fields-row__column-6.fields-group
- = f.input :thumbnail, as: :file, wrapper: :with_block_label, label: t('admin.settings.thumbnail.title'), hint: t('admin.settings.thumbnail.desc_html')
+ = f.input :thumbnail, as: :file, wrapper: :with_block_label, label: t('admin.settings.thumbnail.title'), hint: site_upload_delete_hint(t('admin.settings.thumbnail.desc_html'), :thumbnail)
.fields-row__column.fields-row__column-6.fields-group
- = f.input :hero, as: :file, wrapper: :with_block_label, label: t('admin.settings.hero.title'), hint: t('admin.settings.hero.desc_html')
+ = f.input :hero, as: :file, wrapper: :with_block_label, label: t('admin.settings.hero.title'), hint: site_upload_delete_hint(t('admin.settings.hero.desc_html'), :hero)
.fields-row
.fields-row__column.fields-row__column-6.fields-group
- = f.input :mascot, as: :file, wrapper: :with_block_label, label: t('admin.settings.mascot.title'), hint: t('admin.settings.mascot.desc_html')
+ = f.input :mascot, as: :file, wrapper: :with_block_label, label: t('admin.settings.mascot.title'), hint: site_upload_delete_hint(t('admin.settings.mascot.desc_html'), :mascot)
%hr.spacer/
trends:
desc_html: Publicly display previously reviewed hashtags that are currently trending
title: Trending hashtags
+ site_uploads:
+ delete: Delete uploaded file
+ destroyed_msg: Site upload successfully deleted!
statuses:
back_to_account: Back to account page
batch:
end
resource :settings, only: [:edit, :update]
+ resources :site_uploads, only: [:destroy]
resources :invites, only: [:index, :create, :destroy] do
collection do