chinwagsocial/app/policies/instance_policy.rb
Claire 7f803c41e2
Add ability to purge undeliverable domains from admin interface (#16686)
* Add ability to purge undeliverable domains from admin interface

* Add tests
2021-12-17 23:01:21 +01:00

16 lines
169 B
Ruby

# frozen_string_literal: true
class InstancePolicy < ApplicationPolicy
def index?
admin?
end
def show?
admin?
end
def destroy?
admin?
end
end