Changes between Version 8 and Version 9 of TracTickets


Ignore:
Timestamp:
Dec 29, 2020, 5:09:28 AM (3 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracTickets

    v8 v9  
    9898
    9999'''Notes:'''
    100  - If you need more flexibility and aren't afraid of a little plugin coding of your own, see the [https://trac-hacks.org/wiki/FlexibleAssignToPlugin FlexibleAssignTo plugin].
     100 - If you need more flexibility, then use subclass `ConfigurableTicketWorkflow` and override the `get_allowed_owners` method (see [trac:#12807 Trac ticket 12807]).
    101101 
    102102 - Activating this option may cause some performance degradation. Read more about this in the [trac:TracPerformance#Configuration Trac performance] page.
     
    116116 * '''priority''' — The priority dropdown list.
    117117 * '''milestone''' — The milestone dropdown list.
    118  * '''owner''' — The person responsible for the ticket.
    119118 * '''cc''' — The list of emails for notifying about the ticket change.
    120119
    121120Example: `[/newticket?summary=Compile%20Error&version=1.0&component=gui]`
     121
     122To set the ticket owner the workflow action may also need to be selected. For the [TracWorkflow#TicketCreateAction default workflow], the //create and assign// action can be selected with `action=create_and_assign` and the owner specified by assigning `action_create_and_assign_reassign_owner`. Alternatively, you could avoid needing to select the action by using the [TracWorkflow#BasicTicketWorkflowCustomization default attribute] to make //create and assign// the default action.
     123
     124For other custom workflow actions, determine the variable names by inspecting the `name` attribute of the //action// radio button and the //owner// input or select element.
    122125
    123126== Deleting Tickets