diff --git a/hikari/internal/routes.py b/hikari/internal/routes.py index 0de1038050..c4ba700d7c 100644 --- a/hikari/internal/routes.py +++ b/hikari/internal/routes.py @@ -340,6 +340,10 @@ def compile_to_file( POST_CHANNEL_WEBHOOKS: typing.Final[Route] = Route(POST, "/channels/{channel}/webhooks") GET_CHANNEL_WEBHOOKS: typing.Final[Route] = Route(GET, "/channels/{channel}/webhooks") +# Polls +GET_ANSWER_VOTERS: typing.Final[Route] = Route(GET, "/channels/{channel}/polls/{message}/answer/{answer}") +END_POLL: typing.Final[Route] = Route(POST, "/channels/{channel}/polls/{message}/expire") + # Reactions GET_REACTIONS: typing.Final[Route] = Route(GET, "/channels/{channel}/messages/{message}/reactions/{emoji}") DELETE_ALL_REACTIONS: typing.Final[Route] = Route(DELETE, "/channels/{channel}/messages/{message}/reactions")