mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 05:54:27 +00:00
7f803c41e2
* Add ability to purge undeliverable domains from admin interface * Add tests
16 lines
169 B
Ruby
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
|