Tickets Add ability to change status in ticket replier service

Just took a poke around at that repo, awesome to see that you've been able to build that with Tickets! :)

Technically, you don't really need this as you can do something like the following already:

PHP:
$ticketReplyService->getTicket()->status_id = 2;

Of course, just replace 2 with the status ID you want to use and stick that somewhere before you save the rest of the changes. You can use the same thing to change any other values that don't have any specific setters.
 
Back
Top