# frozen_string_literal: true
class Staff::AccountPolicy < ApplicationPolicy
def index?
return false if restricted?
account&.superuser?
end
def show?
class Scope < Scope
def resolve
return scope.none if restricted?
return scope.all if account&.superuser?
scope.none