# frozen_string_literal: true
class TelegramBotPolicy < ApplicationPolicy
def index?
context.account&.is_superuser?
end
def show?
class Scope < Scope
def resolve
return scope.all if context.account&.is_superuser?
scope.none