Why do identities created via OIDC providers also ...
# ory-network
m
Why do identities created via OIDC providers also automatically have the password and webauthn configured as one of the credentials? šŸ¤” Can this be prevented?
I’m asking as we want to know which authentication methods a user can sign-in with. But the user does not have any password or Passkey configured
Okay switching from the default email & password identity schema to a custom one without
Copy code
"<http://ory.sh/kratos|ory.sh/kratos>": {
  "credentials": {
    "password": {
      "identifier": true
    },
    "webauthn": {
      "identifier": true
    },
    "totp": {
      "account_name": true
    }
  },
  "recovery": {
    "via": "email"
  },
  "verification": {
    "via": "email"
  }
}
did the trick
šŸ™Œ 1