about summary refs log tree commit diff
path: root/app/policies
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/policies
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/policies')
-rw-r--r--app/policies/settings_policy.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/policies/settings_policy.rb b/app/policies/settings_policy.rb
index 2dcb79f51..874f97bab 100644
--- a/app/policies/settings_policy.rb
+++ b/app/policies/settings_policy.rb
@@ -8,4 +8,8 @@ class SettingsPolicy < ApplicationPolicy
   def show?
     admin?
   end
+
+  def destroy?
+    admin?
+  end
 end