0
0
Fork 0

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
This commit is contained in:
ThibG 2020-03-08 16:00:24 +01:00 committed by GitHub
parent 4063f9f278
commit 2423d2f677
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 43 additions and 3 deletions

View file

@ -8,4 +8,8 @@ class SettingsPolicy < ApplicationPolicy
def show?
admin?
end
def destroy?
admin?
end
end