Skip to content
Merged
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
25 changes: 25 additions & 0 deletions integrations/privacy/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,28 @@ You can add data privacy platforms onto your docs. Add the `integrations` field
```

If you'd like to request a data privacy platform integration, please let us know in [our community](https://mintlify.com/community).

## Cookie Consent and Disabling Telemetry

If you need to check if a user has already consented to cookies for GDPR compliance, you can specify a local storage key and value under `cookies`:

```json
"integrations": {
"cookies": {
"key": "LOCAL STORAGE KEY",
"value": "LOCAL STORAGE VALUE"
}
}
```

If these values are set, local storage will be checked to see if the user has consented to cookies. If they have not, telemetry will be disabled.

If you'd like to disable telemetry for all users, you can add the following to your `docs.json` file:

```json
"integrations": {
"telemetry": {
"enabled": false
}
}
```