mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
2423d2f677
* Allow deleting site uploads * Refactor and move links into hints * Fix i18n tests * Fix HTML output of site_upload_delete_hint
16 lines
170 B
Ruby
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
|