Skip to content

Commit a0117e8

Browse files
committed
fix merge conflicts
2 parents 906c179 + f174992 commit a0117e8

File tree

5 files changed

+405
-4
lines changed

5 files changed

+405
-4
lines changed

CHANGELOG.md

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ how a consumer would use the library (e.g. adding unit tests, updating documenta
5555
- `search` to search for audit-logs.
5656
- `send-to` to send audit-logs to server.
5757

58-
- `code42 legal-hold show` option:
59-
- `--include-devices` to print list of devices associated with legal hold along with total storage by organization.
60-
6158
## Unreleased
6259

6360
### Changed

docs/userguides/legalhold.md

+4
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,8 @@ To view all custodians (including inactive) for a legal hold matter, enter
9393

9494
`code42 legal-hold show <matterID> --include-inactive`
9595

96+
To view all devices associated with selected custodians for a legal hold matter, enter
97+
98+
`code42 legal-hold show <matterID> --include-devices`
99+
96100
Learn more about the [Legal Hold](../commands/legalhold.md) commands.

src/code42cli/cmds/legal_hold.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def show(state, matter_id, include_inactive=False, include_policy=False):
111111
inactive_usernames = [
112112
member["user"]["username"] for member in memberships if not member["active"]
113113
]
114-
114+
115115
formatter = OutputFormatter(OutputFormat.TABLE, _MATTER_KEYS_MAP)
116116
formatter.echo_formatted_list([matter])
117117
_print_matter_members(active_usernames, member_type="active")

0 commit comments

Comments
 (0)