for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# Copyright Pincer 2021-Present
# Full MIT License can be found in `LICENSE` at the project root.
"""sent when an integration is created"""
from ..utils.types import Coro
from ..core.dispatch import GatewayDispatch
from ..objects.events.integration import IntegrationCreateEvent
from ..utils.conversion import construct_client_dict
async def integration_create_middleware(self, payload: GatewayDispatch):
"""|coro|
Middleware for ``on_integration_create``,
Parameters
----------
payload : :class:`GatewayDispatch`
The data recieved from the sintegration create event
Returns
-------
Tuple[:class:`str`, List[:class:`~pincer.events.integration.IntegrationCreateEvent`]]
``on_integration_create`` and an ``IntegrationCreateEvent``
"""
return "on_integration_create", [
IntegrationCreateEvent.from_dict(construct_client_dict(self, payload.data))
]
def export() -> Coro:
return integration_create_middleware