Hello. I am trying to <carry over verified status...
# ory-selfhosting
w
Hello. I am trying to carry over verified status in social sign in. I have
email
in my traits in the schema and I have added this lines to my mapper:
Copy code
verified_addresses: std.prune([
  // Carry over verified status from Social Sign-In provider.
  if 'email' in claims && claims.email_verified then { via: 'email', value: claims.email },
])
However, the email stays unverified when I look at the database
identity_verifiable_addresses
. Am I missing anything?
1
Upgrading kratos to
v1.1.0
solved it.
🙌 1