blob: 0ce6baccff80c8df9a386bff0f433df06eb0e8cc (
plain) (
tree)
|
|
# 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
|