Changes between Version 6 and Version 7 of AdvancedTicketWorkflowPlugin


Ignore:
Timestamp:
May 8, 2008, 1:30:36 AM (16 years ago)
Author:
Eli Carter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedTicketWorkflowPlugin

    v6 v7  
    2626
    2727== Example ==
     28Enable the plugin with:
     29{{{
     30[components]
     31advancedworkflow.* = enabled
     32}}}
     33(or by copying the egg to the `plugins` directory)
    2834
    29 One of the provided operations is `set_owner_to_reporter`.  The workflow configuration could use that operation like this:
     35Add the individual controller to the workflow controller list:
    3036{{{
    31     needinfo = * -> needinfo
    32     needinfo.name = Need info
    33     needinfo.operations = set_owner_to_reporter
     37[ticket]
     38workflow = ConfigurableTicketWorkflow,TicketWorkflowOpOwnerReporter
     39}}}
     40
     41And use the operation in your custom workflow:
     42{{{
     43[ticket-workflow]
     44needinfo = * -> needinfo
     45needinfo.name = Need info
     46needinfo.operations = set_owner_to_reporter
    3447}}}
    3548