Hi everyone. I'm Volodymyr and I have self-hosted ...
# general
a
Hi everyone. I'm Volodymyr and I have self-hosted ory setup that includes hydra, kratos and basic kratos self service ui. My question is, is it possible to setup two means of verification of sign-up process either sms and passkey? So far I was able to setup only sms code verification. When I click passkey nothing happening. I'm going attach code in comments. Regards.
image.png
identity.schema.json:
Copy code
...
"phone": {
          "type": "string",
          "format": "tel",
          "title": "Mobile Number",
          "maxLength": 320,
          "<http://ory.sh/kratos|ory.sh/kratos>": {
            "credentials": {
              "code": {
                "identifier": true,
                "via": "sms"
              },
              "passkey": {
                "display_name": true
              }
            },
            "verification": {
              "via": "sms"
            }
          }
        },
...