37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
USERS = {
|
|
"roland": {
|
|
"sn": "Hedberg",
|
|
"givenName": "Roland",
|
|
"eduPersonScopedAffiliation": "staff@example.com",
|
|
"eduPersonPrincipalName": "rohe@example.com",
|
|
"uid": "rohe",
|
|
"eduPersonTargetedID": "one!for!all",
|
|
"c": "SE",
|
|
"o": "Example Co.",
|
|
"ou": "IT",
|
|
"initials": "P",
|
|
"schacHomeOrganization": "example.com",
|
|
"email": "roland@example.com",
|
|
"displayName": "P. Roland Hedberg",
|
|
"labeledURL": "http://www.example.com/rohe My homepage",
|
|
"norEduPersonNIN": "SE197001012222"
|
|
},
|
|
"babs": {
|
|
"surname": "Babs",
|
|
"givenName": "Ozzie",
|
|
"eduPersonAffiliation": "affiliate"
|
|
},
|
|
"upper": {
|
|
"surname": "Jeter",
|
|
"givenName": "Derek",
|
|
"eduPersonAffiliation": "affiliate"
|
|
},
|
|
}
|
|
|
|
EXTRA = {
|
|
"roland": {
|
|
"eduPersonEntitlement": "urn:mace:swamid.se:foo:bar",
|
|
"schacGender": "male",
|
|
"schacUserPresenceID": "skype:pepe.perez"
|
|
}
|
|
} |