https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35657

--- Comment #1 from Martin Renvoize <[email protected]> ---
Notes to self.. this has a few different API options.

* `PUT /tickets/{ticket_id}` where we just update an `assignee_id` field
directly
* `POST /tickets/{ticket_id}/updates` where we add an `assignee_id` field into
the update and sync that across to the tickets table too (this allows for
tracking of when, who, message etc at the same time)
* Supporting both of the above, and ensuring two-way sync such that a POST to
/updates sets the ticket.assignee_id but also a PUT to /tickets with a new
assignee_id also adds a new ticket_update including the who, when but no
message.

My gut it telling me to go with the last option, allowing for updates via the
modal and also quick assignee updates via action buttons in the main table.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to