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

Document how to manage devices #112

Merged
merged 1 commit into from
Jul 20, 2023
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
1 change: 1 addition & 0 deletions documentation/pages/personal/_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"index": "Get Started",
"authentication": "Authentication",
"devices": "Managing your Devices",
"vault": "Accessing your Vault"
}
51 changes: 51 additions & 0 deletions documentation/pages/personal/devices.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import { Callout } from 'nextra/components';

# Managing your devices

## List your devices

```sh copy
dcli devices list
```

You'll get a list of all your devices, with their ID, name, and platform.

```sh
f6110572 Chrome - Linux server_standalone other
e96c8942 Firefox - Ubuntu server_standalone other
9d7fc86f Chrome - Mac OS server_standalone other
61e815b5 Dashlane CLI server_standalone current
```

You can also request the result in JSON format:

```sh copy
dcli devices list --json
```

## Remove devices from your account

Devices that are removed from your account will need to re-authenticate to Dashlane again.
This is useful if you want to remove a device that you no longer use, or you don't have access to anymore.

### Remove specific devices

```sh copy
dcli devices remove <device-id-1> <device-id-2>
```

### Remove all devices except the current one

```sh copy
dcli devices remove --other
```

### Remove all devices including current CLI device

```sh copy
dcli devices remove --all
```

<Callout type="info" emoji="ℹ️">
If you remove the current CLI device, you will need to do a `dcli reset` in order to re-authenticate.
</Callout>