mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Add managed read permissions to group
Part of the work for: https://fedorahosted.org/freeipa/ticket/3566 Reviewed-By: Martin Kosek <mkosek@redhat.com>
This commit is contained in:
parent
7786ff694b
commit
49e45f28a2
@ -137,6 +137,26 @@ class group(LDAPObject):
|
|||||||
'sudorule'],
|
'sudorule'],
|
||||||
}
|
}
|
||||||
rdn_is_primary_key = True
|
rdn_is_primary_key = True
|
||||||
|
managed_permissions = {
|
||||||
|
'System: Read Groups': {
|
||||||
|
'replaces_global_anonymous_aci': True,
|
||||||
|
'ipapermbindruletype': 'anonymous',
|
||||||
|
'ipapermright': {'read', 'search', 'compare'},
|
||||||
|
'ipapermdefaultattr': {
|
||||||
|
'businesscategory', 'cn', 'description', 'gidnumber',
|
||||||
|
'ipaexternalmember', 'ipauniqueid', 'mepmanagedby', 'o',
|
||||||
|
'objectclass', 'ou', 'owner', 'seealso',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'System: Read Group Membership': {
|
||||||
|
'replaces_global_anonymous_aci': True,
|
||||||
|
'ipapermbindruletype': 'all',
|
||||||
|
'ipapermright': {'read', 'search', 'compare'},
|
||||||
|
'ipapermdefaultattr': {
|
||||||
|
'member', 'memberof', 'memberuid',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
label = _('User Groups')
|
label = _('User Groups')
|
||||||
label_singular = _('User Group')
|
label_singular = _('User Group')
|
||||||
|
Loading…
Reference in New Issue
Block a user