-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add passwordless member adding capability (#46)
- Loading branch information
Showing
3 changed files
with
28 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
<?php | ||
|
||
$capabilities['group'] = [ | ||
'groups_can_create' => 'create groups', | ||
'groups_can_edit' => 'edit group info', | ||
'groups_can_create_user' => 'create new users inside groups', | ||
'groups_can_add_member_auth' => 'add users to groups with their passwords', | ||
'groups_can_create' => 'create groups', | ||
'groups_can_edit' => 'edit group info', | ||
'groups_can_delete' => 'delete groups', | ||
'groups_can_create_user' => 'create new users inside groups', | ||
'groups_can_add_member_auth' => 'add users to groups (with password)', | ||
'groups_can_add_member_no_auth' => 'add users to groups (without password)', | ||
'groups_can_add_member_invite' => 'invite users to join groups', | ||
'groups_can_delete' => 'delete groups', | ||
'groups_can_delete_user' => 'delete users', | ||
'groups_can_edit_user' => 'edit user info' | ||
'groups_can_delete_user' => 'delete users', | ||
'groups_can_edit_user' => 'edit user info', | ||
'groups_can_impersonate' => 'can impersonate other users', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters