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