summaryrefslogtreecommitdiff
path: root/src/saml2/attributemaps/adfs_v1x.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/saml2/attributemaps/adfs_v1x.py')
-rw-r--r--src/saml2/attributemaps/adfs_v1x.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/saml2/attributemaps/adfs_v1x.py b/src/saml2/attributemaps/adfs_v1x.py
index 0f8d01a5..69f99fbd 100644
--- a/src/saml2/attributemaps/adfs_v1x.py
+++ b/src/saml2/attributemaps/adfs_v1x.py
@@ -1,18 +1,18 @@
-CLAIMS = 'http://schemas.xmlsoap.org/claims/'
+CLAIMS = "http://schemas.xmlsoap.org/claims/"
MAP = {
"identifier": "urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified",
- 'fro': {
- CLAIMS+'commonname': 'commonName',
- CLAIMS+'emailaddress': 'emailAddress',
- CLAIMS+'group': 'group',
- CLAIMS+'upn': 'upn',
+ "fro": {
+ CLAIMS + "commonname": "commonName",
+ CLAIMS + "emailaddress": "emailAddress",
+ CLAIMS + "group": "group",
+ CLAIMS + "upn": "upn",
+ },
+ "to": {
+ "commonName": CLAIMS + "commonname",
+ "emailAddress": CLAIMS + "emailaddress",
+ "group": CLAIMS + "group",
+ "upn": CLAIMS + "upn",
},
- 'to': {
- 'commonName': CLAIMS+'commonname',
- 'emailAddress': CLAIMS+'emailaddress',
- 'group': CLAIMS+'group',
- 'upn': CLAIMS+'upn',
- }
}