update with multiple assignees

This commit is contained in:
Oliver Bryan
2026-01-16 22:44:43 +00:00
parent cfab272294
commit 98613295f0

View File

@@ -8,7 +8,7 @@ export async function update({
title, title,
description, description,
sprintId, sprintId,
assigneeId, assigneeIds,
status, status,
onSuccess, onSuccess,
onError, onError,
@@ -17,7 +17,7 @@ export async function update({
title?: string; title?: string;
description?: string; description?: string;
sprintId?: number | null; sprintId?: number | null;
assigneeId?: number | null; assigneeIds?: number[] | null;
status?: string; status?: string;
} & ServerQueryInput<IssueRecord>) { } & ServerQueryInput<IssueRecord>) {
const csrfToken = getCsrfToken(); const csrfToken = getCsrfToken();
@@ -33,7 +33,7 @@ export async function update({
title, title,
description, description,
sprintId, sprintId,
assigneeId, assigneeIds,
status, status,
}), }),
credentials: "include", credentials: "include",