Browse Source
[commands] Document GroupCog.interaction_check
pull/9273/head
Soheab_
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
14 additions and
1 deletions
-
discord/ext/commands/cog.py
-
docs/ext/commands/api.rst
|
|
@ -50,6 +50,7 @@ from ._types import _BaseCommand, BotT |
|
|
|
if TYPE_CHECKING: |
|
|
|
from typing_extensions import Self |
|
|
|
from discord.abc import Snowflake |
|
|
|
from discord._types import ClientT |
|
|
|
|
|
|
|
from .bot import BotBase |
|
|
|
from .context import Context |
|
|
@ -585,6 +586,18 @@ class Cog(metaclass=CogMeta): |
|
|
|
""" |
|
|
|
return True |
|
|
|
|
|
|
|
@_cog_special_method |
|
|
|
def interaction_check(self, interaction: discord.Interaction[ClientT], /) -> bool: |
|
|
|
"""A special method that registers as a :func:`discord.app_commands.check` |
|
|
|
for every app command and subcommand in this cog. |
|
|
|
|
|
|
|
This function **can** be a coroutine and must take a sole parameter, |
|
|
|
``interaction``, to represent the :class:`~discord.Interaction`. |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
""" |
|
|
|
return True |
|
|
|
|
|
|
|
@_cog_special_method |
|
|
|
async def cog_command_error(self, ctx: Context[BotT], error: Exception) -> None: |
|
|
|
"""|coro| |
|
|
|
|
|
@ -256,7 +256,7 @@ GroupCog |
|
|
|
.. attributetable:: discord.ext.commands.GroupCog |
|
|
|
|
|
|
|
.. autoclass:: discord.ext.commands.GroupCog |
|
|
|
:members: |
|
|
|
:members: interaction_check |
|
|
|
|
|
|
|
|
|
|
|
CogMeta |
|
|
|