Group Management
Last modified by Manuel Leduc on 2024/04/22
Contents
Adding groups to your wiki
- Log in as an administrator
- Hover over "Wiki" and click on "Administer Wiki"
- Click on the "Groups" link to bring up an overview of all the groups
- Click on the "Add new group" button to open the group creation lightbox as shown on the image below
- Fill in the group name
- Click the "Create Group" button
Editing an existing group
- Log in as an administrator
- Hover over "Wiki" and click on "Administer Wiki"
- Click on the "Groups" link to bring up an overview of all the groups
- You have two options:
- Click the group name for the group you want to edit
- On the group page click "Edit" in the top left corner (this will open a page where you can edit the members of the group (if any))
- Click on the small yellow pencil near the group you want to edit (this will open a lightbox with the members of that group)
- Click the group name for the group you want to edit
- Here's how you can add a new user to the group:
- Start typing the user's name in the "Users to add" input field. After starting to type, if the user exists, a suggest feature will be displayed, containing a list of all the users whose names contain the typed letters, so you can select the user you want from that list
- Click "Add"
- Here's how you can add a subgroup to the current group:
- Start typing the group's name in the "Subgroups to add" input field. After starting to type, if the group exists, a suggest feature will be displayed, containing a list of all the groups whose names contain the typed letters, so you can select the group you want from that list
- Click "Add"
- You can delete a user or a group by clicking on the red "X" button as shown below:
Deleting an existing group
- Log in as an administrator
- Hover over "Wiki" and click on "Administer Wiki"
- Click on the "Groups" link to bring up an overview of all the groups
- Delete the group by clicking on the red "X" button for the group you wish to delete
Modify the number of groups displayed in the list
This is valid as of v3.5 (I think it works on any 3.x version).
You have to edit XWiki.AdminGroupsSheet for groups.
The page contains a line like this:
var ta = new XWiki.widgets.LiveTable("$url", "groupstable", callback);
Just replace it with:
var ta = new XWiki.widgets.LiveTable("$url", "groupstable", callback, {limit: 100});
where 100 is the number of items displayed per page.