Edgewall Software

Changes between Version 43 and Version 44 of TracPermissions


Ignore:
Timestamp:
Mar 29, 2007, 6:17:24 AM (17 years ago)
Author:
joel
Comment:

adding missing documentation on adding a new group

Legend:

Unmodified
Added
Removed
Modified
  • TracPermissions

    v43 v44  
    100100Group membership can be checked by doing a {{{permission list}}} with no further arguments; the resulting output will include group memberships. '''Use lowercase for group names, as uppercase is reserved for permissions'''.
    101101
     102== Adding a New Group and Permissions ==
     103Permission groups can be created by assigning a user to a group you wish to create, then assign permissions to that group.
     104
     105The following will add ''bob'' to the new group called ''beta_testers'' and then will assign WIKI_ADMIN permissions to that group. (Thus, ''bob'' will inherit the WIKI_ADMIN permission)
     106{{{
     107   $ trac-admin /path/to/projenv permission add bob beta_testers
     108   $ trac-admin /path/to/projenv permission add beta_testers WIKI_ADMIN
     109
     110}}}
     111
    102112== Removing Permissions ==
    103113