Hello team, is there a way to disable OIDC linking...
# ory-network
b
Hello team, is there a way to disable OIDC linking via settings while still allowing other settings flows?
m
Hello, yea that should be possible: You can selectively enable or disable specific settings methods in Ory Kratos configuration. For OIDC specifically, you can disable it while keeping other methods like password and profile updates enabled:
Copy code
selfservice:
  methods:
    password:
      enabled: true
    profile:
      enabled: true
    oidc:
      enabled: false  # This disables OIDC linking in settings
This configuration allows users to update their password and profile information but prevents them from linking or unlinking social sign-in providers like Google, Facebook, etc. Docs Kratos > Self-service > Flows > Settings and profile updates>.