7f803c41e2
* Add ability to purge undeliverable domains from admin interface * Add tests
15 строки
169 Б
Ruby
15 строки
169 Б
Ruby
# frozen_string_literal: true
|
|
|
|
class InstancePolicy < ApplicationPolicy
|
|
def index?
|
|
admin?
|
|
end
|
|
|
|
def show?
|
|
admin?
|
|
end
|
|
|
|
def destroy?
|
|
admin?
|
|
end
|
|
end
|