Hey <@U04UQ68083H> do you know about the new `Two-...
# ory-copilot
a
Hey @chilly-king-10285 do you know about the new
Two-step registration
feature?
c
A message from kapa.ai
Yes, the
Two-step registration
is a feature in Ory that enhances the user experience during registration. In a one-step registration, when multiple authentication strategies are enabled (like password, code via email, and passkey), the identity traits are repeated for each authentication strategy. However, in a two-step registration, the user is first prompted for the identity traits and then asked to choose a credential method for authentication. This results in a more streamlined user experience. Identity traits are data associated with an identity that can be modified by the user. These traits are configured through the identity schema. You can learn more about identity traits [here](https://www.ory.sh/docs/kratos/manage-identities/managing-users-identities-metadata#traits). To disable the legacy one-step registration, you can go to the Ory console and switch off "Enable legacy one-step registration" or use the Ory CLI with the following commands:
Copy code
bash ory list projects # to get the project id      ory patch project ${project_id} \    --replace '/services/identity/config/selfservice/flows/registration/enable_legacy_one_step=false'
You can find more information about this in the [Ory documentation](https://www.ory.sh/docs/identities/sign-in/two-step-registration).