Skip to content
Open
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
10 changes: 5 additions & 5 deletions app/en/guides/user-facing-agents/secure-auth-production/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ There are two ways to secure your auth flows with Arcade.dev:
- Use the **Arcade user verifier** for development (enabled by default)
- Implement a **custom user verifier** for production

This setting is configured in the [Auth > Settings section](https://api.arcade.dev/dashboard/auth/settings) of the Arcade Dashboard.
This setting is configured in the [Auth > Settings section](https://api.arcade.dev/dashboard/settings/user-verification) of the Arcade Dashboard.

## Use the Arcade user verifier

If you're building a proof-of-concept app or a solo project, use the Arcade user verifier. This option requires no custom development and is on by default when you create a new Arcade.dev account.

This setting is configured in the [Auth > Settings section](https://api.arcade.dev/dashboard/auth/settings) of the Arcade Dashboard:
This setting is configured in the [Auth > Settings section](https://api.arcade.dev/dashboard/settings/user-verification) of the Arcade Dashboard:

<img
src="/images/docs/auth/dashboard-arcade-verifier.png"
Expand Down Expand Up @@ -97,7 +97,7 @@ try {
"status code:",
error.status,
"data:",
error.data
error.data,
);
throw error;
}
Expand Down Expand Up @@ -225,7 +225,7 @@ console.error(
"status code:",
error.status,
"data:",
error.data
error.data,
);
throw error;
```
Expand Down Expand Up @@ -256,7 +256,7 @@ Content-Type: application/json

### Add your custom verifier route to Arcade

In the [Auth > Settings section](https://api.arcade.dev/dashboard/auth/settings) of the Arcade Dashboard, pick the **Custom verifier** option and add the URL of your verifier route.
In the [Auth > Settings section](https://api.arcade.dev/dashboard/settings/user-verification) of the Arcade Dashboard, pick the **Custom verifier** option and add the URL of your verifier route.

<img
src="/images/docs/auth/dashboard-custom-verifier.png"
Expand Down
Loading