Changes between Version 23 and Version 24 of PrivateReportsPlugin


Ignore:
Timestamp:
Oct 11, 2017, 6:19:22 PM (7 years ago)
Author:
Ryan J Ollos
Comment:

Document #13298.

Legend:

Unmodified
Added
Removed
Modified
  • PrivateReportsPlugin

    v23 v24  
    1010
    1111This plugin can be used to restrict users to see only specific reports. The plugin lets you choose permissions for each report. The users have to have at least one of the permissions to be able to see it on the 'Available Reports' page and to access it directly.
    12 
    13 In version 0.2 the plugin conforms to the Trac standard of allowing only all uppercase for permissions. This requires a new table structure, which means you have to enter the permission for each report again.
    1412
    1513How to choose the permissions or groups needed to view a report:
     
    4745General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    4846
     47The component rule for activating the plugin is:
     48{{{#!ini
     49[components]
     50privatereports.* = enabled
     51}}}
     52This is only needed if activating the plugin by editing trac.ini rather than from the //Plugins// administration page.
     53
     54Add `PrivateReportsPolicy` to the list of `permission_policies`. Generally it should be the first entry in the list.
     55
     56{{{#!ini
     57[trac]
     58permission_policies = PrivateReportsPolicy,
     59    DefaultPermissionPolicy, LegacyAttachmentPolicy
     60}}}
     61
    4962== Recent Changes
    5063