Skip to content
Snippets Groups Projects
Commit 8eb2a15b authored by Yordan Kinkov's avatar Yordan Kinkov
Browse files

Change OCM to AAS claims name mapping

parent 5037bb9f
No related branches found
No related tags found
No related merge requests found
Pipeline #53404 passed with stage
in 28 seconds
......@@ -16,13 +16,13 @@ iss = getIss(claims)
auth_time = getAuthTime(claims)
getName(c) = x {
x = c.first_name
x = c.EmpFirstName
}
getGivenName(c) = x {
x = c.first_name
x = c.EmpFirstName
}
getFamilyName(c) = x {
x = c.last_name
x = c.EmpLastName
}
getMiddleName(c) = x {
x = c.EmpMiddleName
......@@ -43,10 +43,10 @@ getEmailVerified(c) = x {
x = c.email_verified
}
getSub(c) = x {
x = c.sub
x = c.subjectDID
}
getIss(c) = x {
x = c.iss
x = c.issuerDID
}
getAuthTime(c) = x {
x = c.auth_time
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment