Skip to content

Commit 29fb255

Browse files
committed
Made the ADFS v1.x URIs lowercase to be consistent with the ADFS v2.x URIs
1 parent 1d9f550 commit 29fb255

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

example/attributemaps/adfs_v1x.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
MAP = {
77
"identifier": "urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified",
88
"fro": {
9-
'http://schemas.xmlsoap.org/claims/CommonName': 'commonName',
10-
'http://schemas.xmlsoap.org/claims/EmailAddress': 'emailAddress',
11-
'http://schemas.xmlsoap.org/claims/Group': 'group',
12-
'http://schemas.xmlsoap.org/claims/UPN': 'upn',
9+
'http://schemas.xmlsoap.org/claims/commonname': 'commonName',
10+
'http://schemas.xmlsoap.org/claims/emailaddress': 'emailAddress',
11+
'http://schemas.xmlsoap.org/claims/group': 'group',
12+
'http://schemas.xmlsoap.org/claims/upn': 'upn',
1313
},
1414
"to": {
15-
'commonName': 'http://schemas.xmlsoap.org/claims/CommonName',
16-
'emailAddress': 'http://schemas.xmlsoap.org/claims/EmailAddress',
17-
'group': 'http://schemas.xmlsoap.org/claims/Group',
18-
'upn': 'http://schemas.xmlsoap.org/claims/UPN',
15+
'commonName': 'http://schemas.xmlsoap.org/claims/commonname',
16+
'emailAddress': 'http://schemas.xmlsoap.org/claims/emailaddress',
17+
'group': 'http://schemas.xmlsoap.org/claims/group',
18+
'upn': 'http://schemas.xmlsoap.org/claims/upn',
1919
}
2020
}

0 commit comments

Comments
 (0)