Adding Multi-User Approval Process in trac Workflow - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:09:29Z http://stackoverflow.com/feeds/question/543224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/543224/adding-multi-user-approval-process-in-trac-workflow 0 Adding Multi-User Approval Process in trac Workflow Typhon 2009-02-12T20:59:58Z 2009-02-13T15:30:28Z <p>I have selected trac for my organization's project management tool; and I'd like to modify the default workflow as follows:</p> <ul> <li>A new "enchancement" ticket can be created by all members</li> <li>All new "enchancement" tickets need to be approved by the same 4 people before it can be assigned to a developer for work. "defect" &amp; "task" tickets need not have the approval process.</li> </ul> <p>I know I have to modify the [ticket-workflow] area of the trac.ini; but I can't figure out how to limit developer assignment until the ticket has essentially been approved.</p> <p>I understand this is not an optimal workflow/process; but it's something that I have inherited and have to conform to until I can change it. Thanks!</p> http://stackoverflow.com/questions/543224/adding-multi-user-approval-process-in-trac-workflow/543428#543428 0 Answer by Remy Blank for Adding Multi-User Approval Process in trac Workflow Remy Blank 2009-02-12T21:39:47Z 2009-02-12T21:39:47Z <p>You could install the <a href="http://trac-hacks.org/wiki/TypedTicketWorkflowPlugin" rel="nofollow">TypedTicketWorkflowPlugin</a> to restrict some transitions to specific ticket types only. Then update your <code>[ticket-workflow]</code> section along the lines of (untested):</p> <pre><code>[ticket-workflow] assign = new,reopened -&gt; assigned assign.operations = set_owner assign.permissions = TICKET_MODIFY assign.tickettype = defect, task approve = new,reopened -&gt; approved approve.permissions = TICKET_ADMIN approve.tickettype = enhancement assign_enhancement = approved -&gt; assigned assign_enhancement.name = assign assign_enhancement.operations = set_owner assign_enhancement.permissions = TICKET_MODIFY </code></pre> <p>You may have to tweak your <code>approve.permissions</code> options to allow only the right people to approve enhancement requests. I'm not sure if you can set usernames directly in the option, though.</p> http://stackoverflow.com/questions/543224/adding-multi-user-approval-process-in-trac-workflow/546362#546362 0 Answer by Oliver Giesen for Adding Multi-User Approval Process in trac Workflow Oliver Giesen 2009-02-13T15:30:28Z 2009-02-13T15:30:28Z <p>In addition to what Remy wrote, in order to get the multi-user approval bit of your request you could try to create distinct approved statii, e.g. </p> <p>new, reopened -> approved1 -> approved2 -> approved3 -> approved4 -> assigned </p> <p>(the above is not actual <code>[ticket-workflow]</code>-syntax obviously)</p>