Greetings :wave::skin-tone-2: Issue: I don't need ...
# talk-kratos
b
Greetings 👋🏻 Issue: I don't need email verification for any social sign-in! ✉️ Is there any way to stop verification emails for OIDC? ➡️ Here is my configuration 🔧 for OIDC registration
Copy code
local claims = {
  email_verified: true,
} + std.extVar('claims');
{
  identity: {
    traits: {
      [if 'email' in claims && claims.email_verified then 'email' else null]: claims.email
    },
  },
}