I don't think that any of the various notification plugins directly support what you want (check on trac-hacks to be sure), but it wouldn't be difficult to do yourself.
The ITicketChangeListener listener interface provides a hook that you can plug into and monitor for the ticket changes that you are interested in. That interface has methods for ticket_created, ticket_changed and ticket_deleted. One of the values passed in to the ticket_changed method is a dict of whatever old values were in the ticket before it was updated. If status is one of the keys, then the status was changed, so then you just look at the current status of that ticket. If it is "in_QA", then fire off your notification. On Mon, Jun 15, 2009 at 6:12 AM, morgancodes<[email protected]> wrote: > > Hello, > I'd like to configure trac to notify a specified user when any > ticket's status changes to "in_QA" (I'm using the enterprise > workflow). Any suggestions on the simplest way to do this? > thanks, > -Morgan > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
