Modify ↓
Opened 8 years ago
Last modified 15 months ago
#12809 new enhancement
Add set_owner_default attribute to specify default value of set_owner in ticket-workflow
Reported by: | Jun Omae | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | next-stable-1.6.x |
Component: | ticket system | Version: | |
Severity: | normal | Keywords: | workflow |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
set_owner
attribute in ticket-workflow currently uses req.authname
for the default value. It would be useful to specify any username, reporter, previous owner or component owner. That is inspired by th:AdvancedTicketWorkflowPlugin.
action.set_owner_default = <reporter> | Ticket's reporter |
action.set_owner_default = <previous> | Previous owner |
action.set_owner_default = <component-owner> | Component's owner |
action.set_owner_default = username | Any username |
I implemented it via IRequestFilter.post_process_request
with Trac 1.0.x.
Attachments (0)
Note:
See TracTickets
for help on using tickets.
Similar to #11856 and previously request in #10913.