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