Modify ↓
Opened 19 years ago
Closed 19 years ago
#3087 closed enhancement (wontfix)
Also show cc in My Tickets
Reported by: | Owned by: | daniel | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | report system | Version: | 0.9.5 |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
extend the report "My Tickets" like this to list cc'ed tickets also:
SELECT p.value AS __color__, (CASE status WHEN 'assigned' THEN 'Assigned' ELSE (CASE cc WHEN '$USER' THEN 'CC' ELSE 'Owned' END) END) AS __group__, id AS ticket, summary, component, version, milestone, t.type AS type, severity, priority, time AS created, changetime AS _changetime, description AS _description, reporter AS _reporter FROM ticket t, enum p WHERE t.status IN ('new', 'assigned', 'reopened') AND p.name = t.priority AND p.type = 'priority' AND (owner = '$USER' OR cc = '$USER') ORDER BY (__group__) ASC, p.value, milestone, severity, time
Attachments (0)
Note:
See TracTickets
for help on using tickets.
The report module is being deprecated, so no modifications apart from bugfixes are being made to it.
Additionally, as this can be trivially done until then with custom reports, I don't think it's necessary to add it to the core.