Edgewall Software

Changes between Version 70 and Version 71 of TracWorkflow


Ignore:
Timestamp:
Apr 27, 2017, 2:17:48 AM (7 years ago)
Author:
Ryan J Ollos
Comment:

Remove example that's not very useful.

Legend:

Unmodified
Added
Removed
Modified
  • TracWorkflow

    v70 v71  
    192192}}}
    193193
    194 Then, to integrate this with the default Trac 0.11 workflow, you also need to add the `reviewing` state to the `accept` and `resolve` actions:
     194To integrate this with the default workflow, you also need to add the `reviewing` state to the `accept` and `resolve` actions:
    195195
    196196{{{#!ini
     
    243243}}}
    244244
    245 == Example: Limit the resolution options for a new ticket
    246 
    247 The above `resolve_new` operation allows you to set the possible resolutions for a new ticket. By modifying the existing resolve action and removing the new status from before the `->` we then get two resolve actions. One with limited resolutions for new tickets, and then the regular one once a ticket is accepted.
    248 
    249 {{{#!ini
    250 resolve_new = new -> closed
    251 resolve_new.label = resolve
    252 resolve_new.operations = set_resolution
    253 resolve_new.permissions = TICKET_MODIFY
    254 resolve_new.set_resolution = invalid,wontfix,duplicate
    255 
    256 resolve = assigned,accepted,reopened -> closed
    257 resolve.operations = set_resolution
    258 resolve.permissions = TICKET_MODIFY
    259 }}}
    260 
    261245== Advanced Ticket Workflow Customization
    262246