handleBulkAssignment method in TaskBrowsertaskService.bulkAssignTasks with task IDs and user IDisLoading.value = true)await fetchTasks())closeContextMenu())rowSelection.value = {})@assignee-selected eventThe implementation includes proper error handling:
The backend endpoint is already implemented at:
PUT /tasks/bulk/assign
Request body:
{
"task_ids": [1, 2, 3],
"assigned_user_id": 5
}
Response:
{
"success_count": 3,
"failed_count": 0,
"errors": []
}