Changes between Version 34 and Version 35 of TracTicketChangelogPlugin


Ignore:
Timestamp:
Oct 5, 2017, 4:46:40 AM (7 years ago)
Author:
Ryan J Ollos
Comment:

Document permission changes in r14227 and [16847:16848].

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketChangelogPlugin

    v34 v35  
    100100In version 1.2 of the plugin, the pattern is configured using the [trac:CommitTicketUpdater#Configuration CommitTicketUpdater] options.
    101101
     102Version 0.12 requires granting `TICKETLOG_VIEW` permission for the change log to be visible. The permission was redundant with `CHANGESET_VIEW`, so it was removed in version 1.0. In version 1.0 and later the ticket log will be visible to users that have been granted `CHANGESET_VIEW`.
     103
     104The equivalent of `TICKETLOG_VIEW` can be implemented using [TracFineGrainedPermissions#AuthzPolicy AuthzPolicy] by selectively granting `CHANGESET_VIEW` on the `ticket` realm. For example, to only allow authenticated users to see the ticket log:
     105{{{#!ini
     106[ticket:*]
     107authenticated = CHANGESET_VIEW
     108* = !CHANGESET_VIEW
     109}}}
     110Note that the changeset links in the log will be disabled if the user doesn't have `CHANGESET_VIEW` for the `changeset` realm (or coarse-grained `CHANGESET_VIEW`).
     111
    102112== Recent Changes
    103113