feat(telegram): add sendPoll support (#16193) (#16209)

Merged via /review-pr -> /prepare-pr -> /merge-pr.

Prepared head SHA: b58492cfed
Co-authored-by: robbyczgw-cla <239660374+robbyczgw-cla@users.noreply.github.com>
Co-authored-by: steipete <58493+steipete@users.noreply.github.com>
Reviewed-by: @steipete
This commit is contained in:
Robby
2026-02-14 18:34:30 +01:00
committed by GitHub
parent fc5d147d1b
commit 8e5689a84d
21 changed files with 364 additions and 11 deletions

View File

@@ -145,7 +145,10 @@ export async function executePollAction(params: {
question: string;
options: string[];
maxSelections: number;
durationSeconds?: number;
durationHours?: number;
threadId?: string;
isAnonymous?: boolean;
}): Promise<{
handledBy: "plugin" | "core";
payload: unknown;
@@ -178,8 +181,13 @@ export async function executePollAction(params: {
question: params.question,
options: params.options,
maxSelections: params.maxSelections,
durationSeconds: params.durationSeconds ?? undefined,
durationHours: params.durationHours ?? undefined,
channel: params.ctx.channel,
accountId: params.ctx.accountId ?? undefined,
threadId: params.threadId ?? undefined,
silent: params.ctx.silent ?? undefined,
isAnonymous: params.isAnonymous ?? undefined,
dryRun: params.ctx.dryRun,
gateway: params.ctx.gateway,
});