#6406 closed enhancement (wontfix)
Let PrivateTicketsPlugin act only on certain "marked" tickets
| Reported by: | HeX | Owned by: | Noah Kantrowitz |
|---|---|---|---|
| Priority: | low | Component: | PrivateTicketsPlugin |
| Severity: | trivial | Keywords: | |
| Cc: | Trac Release: | 0.12 |
Description
Just came across this plugin it is almost what I'm looking for. On our trac system we got a customisation for the access policies pretty much like the SensitiveTicketsPlugin. But this lacks the feature of PrivateTicketsPlugin to allow reporters and other dedicated groups to view the ticket. So integrating a checkbox and letting PrivateTicketsPlugin act only on "private" tickets would be a nice extension.
Attachments (0)
Change History (3)
comment:1 Changed 16 years ago by
| Resolution: | → wontfix |
|---|---|
| Status: | new → closed |
comment:2 Changed 16 years ago by
Fair enough, as for too custom I don't think so. The user case is probably quite common. One would like to have some private tickets that only reporters and a special group can see and others that are commonly "public". But I can live with your decision ;) and thanks for the hint.
comment:3 Changed 16 years ago by
The need might be generic, but the implementation wouldn't be. Some might want it to be per-reporter, others per-component, etc etc. Too hard to predict all the possible conditions.



This is something far too custom to ever see in a general-use plugin, it would be pretty easy for you to add though, probably just use a special keyword and add an
if 'private' in tkt['keywords']:in the right place.