mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
update with multiple assignees
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user