You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/core/docs/authproc_attributelimit.md
+69-46Lines changed: 69 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,121 +8,144 @@ metadata. The configuration is a list of attributes that should be allowed. In c
8
8
release some specific values, make the name of the attribute the key of the array, and its value an array with all the
9
9
different values allowed for it.
10
10
11
+
You may need to send special bilateral, or local attributes to a set of SPs that are not specified in SP's metadata.
12
+
In this case you can list the SPs then add the name of the attributes to send these SPs, or you can list the attributes and then specify the SPs to send them.
13
+
Find the examples below.
14
+
11
15
Examples
12
16
--------
13
17
14
18
Here you will find a few examples on how to use this simple module:
15
19
16
20
Limit to the `cn` and `mail` attribute:
17
21
18
-
'authproc' => array(
19
-
50 => array(
22
+
'authproc' => [
23
+
50 => [
20
24
'class' => 'core:AttributeLimit',
21
25
'cn', 'mail'
22
-
),
23
-
),
26
+
],
27
+
],
24
28
25
29
Allow `eduPersonTargetedID` and `eduPersonAffiliation` by default, but allow the metadata to override the limitation.
0 commit comments