26 lines
597 B
Python
26 lines
597 B
Python
USERS = {
|
|
"roland": {
|
|
"surname": "Hedberg",
|
|
"givenName": "Roland",
|
|
"eduPersonAffiliation": "staff",
|
|
"uid": "rohe0002"
|
|
},
|
|
"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"
|
|
}
|
|
} |