-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Support creating ongoing Legal Hold policy with start date
Closes: SDK-4293
- Loading branch information
1 parent
fc1a3e3
commit 2d2cf85
Showing
3 changed files
with
87 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
src/test/Fixtures/BoxLegalHold/PostOngoingWithStartDateLegalHoldPolicies201.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"type": "legal_hold_policy", | ||
"id": "11111", | ||
"policy_name": "Trial Documents", | ||
"description": "This is a description.", | ||
"status": "active", | ||
"assignment_counts": { | ||
"user": 0, | ||
"folder": 0, | ||
"file": 0, | ||
"file_version": 0 | ||
}, | ||
"is_ongoing": true, | ||
"created_by": { | ||
"type": "user", | ||
"id": "33333", | ||
"name": "Test User", | ||
"login": "testuser@example.com" | ||
}, | ||
"created_at": "2018-04-25T16:37:05-07:00", | ||
"modified_at": "2018-04-25T16:37:05-07:00", | ||
"deleted_at": null, | ||
"filter_started_at": "2018-04-25T16:37:05-07:00", | ||
"filter_ended_at": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters