Skip to content

docs: Add user/tenant management dashboard features #965

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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: 2 additions & 0 deletions v3/docs/post-authentication/dashboard/tenant-management.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Appropriate recipes must be active to turn on the login methods. For example,

- to turn on `emailpassword`, initialize the EmailPassword recipe in the backend.
- to turn on `OTP Phone`, initialize the Passwordless recipe with `flowType` `USER_INPUT_CODE` and contactMethod `PHONE`
- to turn on `WebAuthn`, initialize the WebAuthn recipe in the backend.

:::info

Expand All @@ -70,6 +71,7 @@ Also, initialize appropriate recipes in the backend SDK to use a secondary facto

- to turn on TOTP, initialize the TOTP recipe in the backend.
- to turn on `OTP Phone`, initialize the Passwordless recipe with `flowType` `USER_INPUT_CODE` and contactMethod `PHONE`
- to turn on `WebAuthn`, initialize the WebAuthn recipe in the backend.

<img src="/img/dashboard/tenant-management/secondary-factors.png" alt="Secondary Factors"/>

Expand Down
17 changes: 17 additions & 0 deletions v3/docs/post-authentication/dashboard/user-management.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,23 @@ Enable some features such as user metadata and email verification in your backen

---

## Manage WebAuthn devices

When WebAuthn is enabled for your application, you can view and manage a user's registered WebAuthn devices through the dashboard. This includes viewing device details and removing devices if needed.

To manage WebAuthn devices:

1. Select a user from the dashboard
2. Navigate to the "WebAuthn Devices" section
3. View the list of registered devices
4. Click the remove icon next to a device to remove it from the user's account

:::info Note
Removing a WebAuthn device means the user won't be able to use that device for authentication anymore. They will need to register the device again to use it for authentication.
:::

---

## Create user roles and permissions

:::caution no-title
Expand Down