# frozen_string_literal: true

class DomainBlockPolicy < ApplicationPolicy
  def index?
    staff?
  end

  def show?
    staff?
  end

  def create?
    staff?
  end

  def destroy?
    staff?
  end

  def update?
    staff?
  end
end