Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add docs for code MFA #2019

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/kratos/emails-sms/05_custom-email-templates.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ automatically uses the built-in template.

:::info

The recovery & verification templates only show the versions for the method (**One time code** or **link**) you have selected in
The recovery & verification templates only show the versions for the method (**one-time code** or **link**) you have selected in
the flow configuration.

- <ConsoleLink route="project.recovery" />
Expand Down
11 changes: 10 additions & 1 deletion docs/kratos/mfa/30_sms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import TabItem from '@theme/TabItem';
import BrowserWindow from "@site/src/theme/BrowserWindow"
```

SMS and email can be used to deliver one time codes to users. Ory will deliver a 6-digit code to an SMS / email gateway of your
SMS and email can be used to deliver one-time codes to users. Ory will deliver a 6-digit code to an SMS / email gateway of your
choice, such as Twilio, Amazon SNS, SMTP, or your own application. These codes are valid for a short amount of time, usually 15
minutes or less. Once the user completes the challenge, by entering the code, the AAL of the session is upgraded to AAL2.

Expand All @@ -30,6 +30,15 @@ To enable MFA via SMS, you need to configure an SMS channel in the Ory configura

```mdx-code-block
<Tabs groupId="console-or-cli">
<TabItem value="console" label="Ory Console" default>
```

1. Go to <ConsoleLink route="project.mfa" />.
2. Toggle **Enable one-time code multi factor authentication**.
3. Click **Save**.

```mdx-code-block
</TabItem>
<TabItem value="cli" label="Ory CLI" default>
```

Expand Down
Loading