Skip to content

Handle assignees clone and move in bulk

What does this MR do and why?

Handle assignees clone and move in bulk

Copy assignees in bulk rather than one item at a time when a work item is cloned or moved.

re #339766

Database queries:
  • Insert in batch, up to 100:
INSERT INTO issue_assignees ("issue_id", "user_id") VALUES (24, 57), (24, 58)
  • delete in batch, up to 100:
DELETE FROM "issue_assignees" WHERE "issue_assignees"."issue_id" = 23 AND "issue_assignees"."user_id" IN (57, 58)

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

Before After

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

Edited by Alexandru Croitor

Merge request reports

Loading