1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-23 16:13:15 -05:00
ThibG 2423d2f677
Add ability to delete files uploaded for settings in admin UI ()
* Allow deleting site uploads

* Refactor and move links into hints

* Fix i18n tests

* Fix HTML output of site_upload_delete_hint
2020-03-08 16:00:24 +01:00

16 lines
170 B
Ruby

# frozen_string_literal: true
class SettingsPolicy < ApplicationPolicy
def update?
admin?
end
def show?
admin?
end
def destroy?
admin?
end
end